Metadata-Version: 2.1
Name: kicad-vault
Version: 0.0.1
Summary: A program to manage kicad BOMs, with vendor integration.
Project-URL: Homepage, https://github.com/o7-machinehum/kicad-vault
Project-URL: Bug Tracker, https://github.com/o7-machinehum/kicad-vault/issues
Author-email: Ryan Walker <walker@interruptlabs.ca>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: digikey-api
Requires-Dist: pandas
Requires-Dist: tabulate
Requires-Dist: xmltodict
Description-Content-Type: text/markdown

![](img/logo.png)
Kicad Vault is a Python based part management systems. It will automatically hunt for KiCad projects and generate a webserver highlighting components, their current prices and availability. It is currently only available with digikey integration.

## Getting setup

Requires KiCad 7.0+ for the `kicad-cli` export utility.

Start [here](https://developer.digikey.com/) to get some digikey api credentials.


Install and setup environment variables. Leave this in your .bashrc
``` bash
export DIGIKEY_CLIENT_ID="client_id"
export DIGIKEY_CLIENT_SECRET'="client_secret"
```

## Running
``` bash
cd ~/project/ # Assuming all KiCad projects are in here
git clone git@github.com:o7-machinehum/kicad-vault.git
cd kicad-vault
pip install -r requirements.txt         # only need todo this once
python main.py ../
```
