Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdfer/jlcpcb-parts-database
Automatically updated sqlite database of JLCPCB parts, filtered to only include components in stock. Includes a CSV file of basic and preferred parts.
https://github.com/cdfer/jlcpcb-parts-database
github-actions jlcpcb jlcpcb-assembly-service
Last synced: 2 months ago
JSON representation
Automatically updated sqlite database of JLCPCB parts, filtered to only include components in stock. Includes a CSV file of basic and preferred parts.
- Host: GitHub
- URL: https://github.com/cdfer/jlcpcb-parts-database
- Owner: CDFER
- License: mit
- Created: 2024-09-08T02:13:06.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-06T23:09:01.000Z (3 months ago)
- Last Synced: 2024-10-14T16:21:21.081Z (2 months ago)
- Topics: github-actions, jlcpcb, jlcpcb-assembly-service
- Language: Jupyter Notebook
- Homepage:
- Size: 1.58 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![csv file preview](/images/CSV.png)
# JLCPCB Parts Database
This repository takes the massive SQLite database from [yaqwsx/jlcparts](https://github.com/yaqwsx/jlcparts) and processes it into two convenient files:
### Files
* **Basic and Preferred Parts CSV**: A lightweight (~3MB) CSV file containing basic and preferred parts information.
* **In-Stock Components SQLite Database**: A filtered SQLite database (~1GB) containing only components with 5 or more items in stock.### Why?
The original database is a massive 10GB multi-volume zip archive, which is not supported by most zip libraries due to its use of an older part of the zip standard. This repository simplifies access to the data by providing smaller, more manageable files.
### Automatically Updated Files
Both files are automatically updated using github actions and hosted on GitHub Pages:
* [Basic and Preferred Parts CSV](https://cdfer.github.io/jlcpcb-parts-database/jlcpcb-components-basic-preferred.csv)
* [In-Stock Components SQLite Database](https://cdfer.github.io/jlcpcb-parts-database/jlcpcb-components.sqlite3)### Example Usage
Check out the included Jupyter Notebook `sqlite-search.ipynb` for an example of how to download the database and perform a basic search on the SQLite database using a SQLite query. For CSV files I can recommend the pandas library for python.
### Contributions
Feel free to contribute to this repository by reporting issues, suggesting improvements, or adding new features!
## How it Works
This repository uses a GitHub Actions workflow `.github\workflows\sync-db.yml` to automatically update the parts database. It just runs on a default ubuntu image. Here's a step-by-step explanation of the process:
1. **Trigger**
* The workflow is triggered every day at 4am UTC, 1 hour after yaqwsx/jlcparts updates their database, when the code is committed or manually using the "Run workflow" button.2. **Download Database**
* The workflow downloads the latest JLCPCB parts database zip volumes from https://github.com/yaqwsx/jlcparts3. **Extract Database**
* The workflow extracts the database files using 7zip (one of the only modern implementations to support zip volumes).4. **Run Python Script**
* The workflow runs the `generate-database.py` script, which:
- Renames the database file
- Deletes components with low stock (<5)
- Creates an FTS (Full-Text Search) index for faster searching
- Reindexes and vacuums the database to reduce file size (recreates the database without empty pages)
- Retrieves basic/preferred components and saves them to a CSV file (using pandas)5. **Upload Artifact**
* The workflow uploads the updated database files as a GitHub Pages artifact.6. **Deploy**
* The workflow deploys the updated database files to the GitHub Pages environment.