Skip to content
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 333 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 333 Bytes

PcPartPicker-API

Python3 API for getting part information from PcPartPicker

Examples:

  • Save all cpu data to .json file
     from 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)