Python3 API for getting part information from PcPartPicker
Examples:
- Save all cpu data to
.json
filefrom PcPartPicker import PPP_API import json cpu_info = PPP_API.get_part("cpu") with open("cpu.json", "w") as outfile: json.dump(cpu_info, outfile)