A tool for generating, optimizing, management, and sharing of Bills of Materials (BOMs). Integrates with EDA tools to streamline component sourcing and assembly workflows.
Adds the functionality to query Digi-Key for detailed product information with a part number. The implemented feature allows to retrieve essential data about components directly using Digi-Key's API, including pricing, stock availability, and other relevant details.
Implemented a Distributor that uses the Digi-Key ProductSearch API to fetch product details, and is located in partpal/distributors/digikey.py. The class inherits from the Distributor base class, ensuring consistency with other distributors that may be added in the future. The class handles both production and sandbox environments, allowing for safe testing and production use
Added unit tests for the DigiKeyDistributor class to verify the correct functionality of the product information querying. These can be found in tests/distributor
Adds the functionality to query Digi-Key for detailed product information with a part number. The implemented feature allows to retrieve essential data about components directly using Digi-Key's API, including pricing, stock availability, and other relevant details.
Implemented a
Distributor
that uses the Digi-Key ProductSearch API to fetch product details, and is located inpartpal/distributors/digikey.py
. The class inherits from the Distributor base class, ensuring consistency with other distributors that may be added in the future. The class handles both production and sandbox environments, allowing for safe testing and production useAdded unit tests for the DigiKeyDistributor class to verify the correct functionality of the product information querying. These can be found in
tests/distributor