gitextract_ks9t75m5/ ├── .coveragerc ├── .github/ │ └── workflows/ │ └── test_deploy.yaml ├── .gitignore ├── LICENSE ├── README.md ├── invoke.yaml ├── kintree/ │ ├── __init__.py │ ├── common/ │ │ ├── part_tools.py │ │ ├── progress.py │ │ └── tools.py │ ├── config/ │ │ ├── automationdirect/ │ │ │ ├── automationdirect_api.yaml │ │ │ └── automationdirect_config.yaml │ │ ├── config_interface.py │ │ ├── digikey/ │ │ │ ├── digikey_api.yaml │ │ │ ├── digikey_categories.yaml │ │ │ └── digikey_config.yaml │ │ ├── element14/ │ │ │ ├── element14_api.yaml │ │ │ └── element14_config.yaml │ │ ├── inventree/ │ │ │ ├── categories.yaml │ │ │ ├── inventree_dev.yaml │ │ │ ├── inventree_prod.yaml │ │ │ ├── parameters.yaml │ │ │ ├── parameters_filters.yaml │ │ │ ├── stock_locations.yaml │ │ │ ├── supplier_parameters.yaml │ │ │ └── suppliers.yaml │ │ ├── jameco/ │ │ │ ├── jameco_api.yaml │ │ │ └── jameco_config.yaml │ │ ├── kicad/ │ │ │ ├── kicad.yaml │ │ │ └── kicad_map.yaml │ │ ├── lcsc/ │ │ │ ├── lcsc_api.yaml │ │ │ └── lcsc_config.yaml │ │ ├── mouser/ │ │ │ ├── mouser_api.yaml │ │ │ └── mouser_config.yaml │ │ ├── settings.py │ │ ├── tme/ │ │ │ ├── tme_api.yaml │ │ │ └── tme_config.yaml │ │ └── user/ │ │ ├── general.yaml │ │ ├── internal_part_number.yaml │ │ └── search_api.yaml │ ├── database/ │ │ ├── inventree_api.py │ │ └── inventree_interface.py │ ├── gui/ │ │ ├── gui.py │ │ └── views/ │ │ ├── common.py │ │ ├── main.py │ │ └── settings.py │ ├── kicad/ │ │ ├── kicad_interface.py │ │ ├── kicad_symbol.py │ │ ├── templates/ │ │ │ ├── LICENSE │ │ │ ├── capacitor-polarized.kicad_sym │ │ │ ├── capacitor.kicad_sym │ │ │ ├── connector.kicad_sym │ │ │ ├── crystal-2p.kicad_sym │ │ │ ├── default.kicad_sym │ │ │ ├── diode-led.kicad_sym │ │ │ ├── diode-schottky.kicad_sym │ │ │ ├── diode-standard.kicad_sym │ │ │ ├── diode-zener.kicad_sym │ │ │ ├── eeprom-sot23.kicad_sym │ │ │ ├── ferrite-bead.kicad_sym │ │ │ ├── fuse.kicad_sym │ │ │ ├── inductor.kicad_sym │ │ │ ├── integrated-circuit.kicad_sym │ │ │ ├── library_template.kicad_sym │ │ │ ├── oscillator-4p.kicad_sym │ │ │ ├── protection-unidir.kicad_sym │ │ │ ├── resistor-sm.kicad_sym │ │ │ ├── resistor.kicad_sym │ │ │ ├── transistor-nfet.kicad_sym │ │ │ ├── transistor-npn.kicad_sym │ │ │ ├── transistor-pfet.kicad_sym │ │ │ └── transistor-pnp.kicad_sym │ │ └── templates_project/ │ │ ├── templates_project.kicad_pcb │ │ ├── templates_project.kicad_prl │ │ ├── templates_project.kicad_pro │ │ └── templates_project.kicad_sch │ ├── kintree_gui.py │ ├── search/ │ │ ├── automationdirect_api.py │ │ ├── digikey_api.py │ │ ├── element14_api.py │ │ ├── jameco_api.py │ │ ├── lcsc_api.py │ │ ├── mouser_api.py │ │ ├── search_api.py │ │ ├── snapeda_api.py │ │ └── tme_api.py │ └── setup_inventree.py ├── kintree_gui.py ├── poetry.toml ├── pyproject.toml ├── requirements.txt ├── run_tests.py ├── setup.cfg ├── tasks.py └── tests/ ├── files/ │ ├── FOOTPRINTS/ │ │ └── RF.pretty/ │ │ ├── Skyworks_SKY13575_639LF.kicad_mod │ │ └── Skyworks_SKY65404-31.kicad_mod │ ├── SYMBOLS/ │ │ └── TEST.kicad_sym │ ├── digikey_config.yaml │ ├── inventree_default_db.sqlite3 │ ├── inventree_dev.yaml │ ├── kicad_map.yaml │ └── results.tgz └── test_samples.yaml