CLI to import parts from suppliers like DigiKey, LCSC, Mouser, etc. to InvenTree
Project description
InvenTree Part Import
This project offers a command line interface to easily import parts from suppliers like DigiKey, LCSC, Mouser, etc. into your InvenTree instance.
Installation
pipx install inventree-part-import
(pip should also work, but pipx is the new recommended way
to install standalone applications)
Arch Linux
Latest version from PyPI is available on AUR as
python-inventree-part-import.
Git master version is available as
python-inventree-part-import-git.
(Thanks to @randrej!)
Getting Started
Initial Configuration
When using the CLI tool for the first time, it will guide you through creating your own configuration.
When configuring suppliers, it's highly recommended to always enable the DigiKey API:
select the suppliers you want to setup: (SPACEBAR to toggle, ENTER to confirm)
> [x] DigiKey
[ ] LCSC
[ ] Mouser
[ ] Reichelt
[ ] TME
Default categories/parameters configuration
setup default categories/parameters configuration:
> Copy categories from InvenTree
Copy default categories configuration
Create empty configuration (manual setup)
If you have already been using InvenTree for some time (so you already have setup your category
structure, parts, etc.), select the Copy categories from InvenTree option, to automatically
setup a configuration which matches your InvenTree database.
If you are a new user, you can select the Copy default categories configuration to create
a basic configuration which you can extend in the future.
You can also create your own configuration from scratch (or manually copy
someones existing configuration
) by selecting the Create empty configuration (manual setup) option.
Basic Usage
To import parts, simply use the inventree-part-import command, followed by the supplier or
manufacturer part numbers of the parts you want to import.
$ inventree-part-import <part_number_1> <part_number_2> ...
You can also batch import multiple parts from tabular data files (.csv, .xlsx, etc.) like
so:
$ inventree-part-import parts.csv
Configuration
inventree.yaml
This file is used to configure authentication to your InvenTree host. It has two parameters:
host: the host url to connect to (including port, if required)token: the user token to authenticate with (this will be retrieved automatically by the CLI)
config.yaml
This file is used to configure general settings of the CLI tool, as well as default locales. The following parameters have to be set:
currency: the default currency to use when searching suppliers (ISO4217 code)language: the default language to use when searching suppliers (ISO639 code)location: the default location to use when searching suppliers (ISO3166 code)scrape: whether or not web page scraping is allowed (this can get you temporarily blocked)interactive_part_matches: the maximum number of parts to display in interactive mode (set to null to disable)interactive_category_matches: the maximum number of categories to display in interactive modeinteractive_parameter_matches: the maximum number of parameters to display in interactive modepart_selection_format: standard python format str used to format each line of the interactive part selection menu (any fields from theApiPartdataclass can be used, defaults to:"{MPN} | {manufacturer} | {SKU} | {supplier_link}")auto_detect_columns: list of column names in tabular data files that will be automatically detected (defaults to["Manufacturer Part Number", "MPN", "part_id"])
suppliers.yaml
This file is used to configure supplier specific behavior. The following parameters are always available:
currency: overrides the currency for searching this supplier (seeconfig.yaml)language: overrides the language for searching this supplier (seeconfig.yaml)location: overrides the location for searching this supplier (seeconfig.yaml)
Additionally suppliers can have extra parameters for authentifcation to their respective APIs.
These can be set via the CLI like so: inventree-part-import --configure <supplier>.
DigiKey
Register a Production App on the Digikey API portal and enable the "ProductInformation V4" API for it.
Using a Sandbox app will not work.
Mouser
Request a Search API key from the Mouser API Hub.
TME
Request an API key at the Developers Page.
categories.yaml
This file should specify all your InvenTree categories, as well as metadata like category aliases, parameters, etc. for them.
It's defined as hierarchical tree structure where every 'node' represents a category. For example:
Electronics:
Capacitors:
Ceramic:
Electrolytic:
Products:
Additionally you can define the following meta attributes (starting with _):
_aliaseshas to be a list of supplier category names which will be mapped to that category_descriptionspecifies the categories description (defaults to category name)_ignoremakesinventree-part-importignore that category, as well as any subcategories_parametershas to be a list of parameter names (for parameters defined inparameters.yaml) this category uses
note: parameters get inherited by sub categories_omit_parametershas to be a list of parameters names defined in parent categories that get omitted from the category_structuralcan be set totrueto make the category structural
Here's an example for a config with special attributes:
Electronics:
_description: Electronic Components # custom description
_structural: true # no parts are allowed to be directly in this category
Capacitors:
_parameters: # parameters for both the 'Ceramic' and 'Electrolytic' categories
- Capacitance
- Tolerance
Ceramic:
Electrolytic:
_aliases: # category names mapped to this category from various suppliers
- Aluminum Electrolytic Capacitors
- Aluminum Electrolytic Capacitors - SMD
- Aluminum Electrolytic Capacitors - Leaded
- Electrolyte Capacitors
Products:
_ignore: true # this category contains our own products, so we won't import anything into it
parameters.yaml
This file should specify all your InvenTree parameters, as well as metadata for them.
The following meta attributes are available:
_aliaseshas to be a list of supplier parameter names which will be mapped to that parameter_descriptionspecifies the parameters description (defaults to parameter name)_unitspecifies the parameters unit (experimental)
Here's an example for a single parameter:
Input Voltage:
_aliases:
- Voltage - Input
- Voltage - Input (Max)
- Maximum Input Voltage
_description: Max Input Voltage # optional
_unit: V # experimental, this can lead to import problems
Pre Creation Hooks (hooks.py)
Pre creation hooks are functions that get run after part information has been parsed from a supplier, but before the InvenTree part gets created. They basically let you modify a part, before it gets imported. This can be very useful in some cases.
For example, here's one that assigns transistors into different categories, based on their type:
def fix_transistor_categories(api_part):
if "BJT" in api_part.category_path[-1] or "Bipolar (BJT)" in api_part.category_path:
transistor_type = api_part.parameters.get("Transistor Type", "")
if "NPN" in transistor_type:
api_part.category_path.append("NPN")
elif "PNP" in transistor_type:
api_part.category_path.append("PNP")
You can define any number of them in a hooks.py file in your configuration directory.
They'll get called in the order they're defined in.
For more examples, checkout my config repository.
Goal
The end goal of this project is to not exist anymore in it's current form. Ideally everything the CLI tool does would be directly available from the InvenTree web interface. This will most likely be done by implementing plugins which offer the required functionality for each supplier.
Credits
-
InvenTree (@SchrodingersGat and @matmair) This project wouldn't exist without their brilliant work on creating the awesome open-source inventory management solution.
-
Ki-nTree (@eeintech) This project is inspired by Ki-nTree and aims to fix most of the issues I've had with it. It only provides the part importing functionality, but tries to improve it in every way.
-
Thanks to @atanisoft for extensive beta testing!
License
- This project is licensed under the MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file inventree_part_import-1.9.1.tar.gz.
File metadata
- Download URL: inventree_part_import-1.9.1.tar.gz
- Upload date:
- Size: 36.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0da247e43e062771ec45932ed0dee186cb5da18306ddad3d5ad52311343de80
|
|
| MD5 |
dcdbca0dc4bdd0ae911227ab9d67525f
|
|
| BLAKE2b-256 |
ec4198f0db2872348d920236cdad4fb5f1878a9cc9525b7a1e0b5bd3d2355a76
|
Provenance
The following attestation bundles were made for inventree_part_import-1.9.1.tar.gz:
Publisher:
publish.yaml on 30350n/inventree-part-import
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
inventree_part_import-1.9.1.tar.gz -
Subject digest:
c0da247e43e062771ec45932ed0dee186cb5da18306ddad3d5ad52311343de80 - Sigstore transparency entry: 821259220
- Sigstore integration time:
-
Permalink:
30350n/inventree-part-import@56c42fac0bb384a7952a1c07c07c0d145b0e9e1e -
Branch / Tag:
refs/tags/1.9.1 - Owner: https://github.com/30350n
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@56c42fac0bb384a7952a1c07c07c0d145b0e9e1e -
Trigger Event:
release
-
Statement type:
File details
Details for the file inventree_part_import-1.9.1-py3-none-any.whl.
File metadata
- Download URL: inventree_part_import-1.9.1-py3-none-any.whl
- Upload date:
- Size: 46.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcb849bc50bc98fd8185f5dd8157bac359e836294d481430bcaf5355282167c6
|
|
| MD5 |
b83f84f160d075d163ab58b4c9b0fea2
|
|
| BLAKE2b-256 |
8e25f4b32d30ce8f62f82800d498c9ce88c2dacecc1304026264c0f80878e32c
|
Provenance
The following attestation bundles were made for inventree_part_import-1.9.1-py3-none-any.whl:
Publisher:
publish.yaml on 30350n/inventree-part-import
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
inventree_part_import-1.9.1-py3-none-any.whl -
Subject digest:
fcb849bc50bc98fd8185f5dd8157bac359e836294d481430bcaf5355282167c6 - Sigstore transparency entry: 821259222
- Sigstore integration time:
-
Permalink:
30350n/inventree-part-import@56c42fac0bb384a7952a1c07c07c0d145b0e9e1e -
Branch / Tag:
refs/tags/1.9.1 - Owner: https://github.com/30350n
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@56c42fac0bb384a7952a1c07c07c0d145b0e9e1e -
Trigger Event:
release
-
Statement type: