Perform compliance analysis on materials data stored in Granta MI.
Project description
Project Overview
Granta MI BoM Analytics is part of the larger PyAnsys effort to facilitate the use of Ansys technologies directly from Python.
The Granta MI Restricted Substances solution includes a REST API for evaluating compliance of products, assemblies, specifications, and materials against legislations. This package abstracts automatically- generated code into an easy-to-use client library.
Installation
Install the ansys-grantami-bomanalytics package with this code:
pip install ansys-grantami-bomanalytics
Alternatively, clone and install this package with this code:
git clone https://github.com/pyansys/grantami-bomanalytics
cd grantami-bomanalytics
pip install .
Documentation
The Granta MI BoM Analytics Documentation provides comprehensive installation and usage information.
Usage
Here’s a brief example of how to use Granta MI BoM Analytics:
# Connect and query the Granta service.
>>> from pprint import pprint
>>> from ansys.grantami.bomanalytics import Connection, queries
>>> cxn = Connection("http://my_grantami_server/mi_servicelayer").with_autologon().connect()
>>> query = (
... queries.MaterialImpactedSubstancesQuery()
... .with_material_ids(['plastic-abs-pvc-flame'])
... .with_legislations(['REACH - The Candidate List'])
... )
# Print out the result from the query.
>>> result = cxn.run(query)
>>> pprint(result.impacted_substances)
[<ImpactedSubstance: {"cas_number": 10108-64-2, "percent_amount": 1.9}>,
<ImpactedSubstance: {"cas_number": 107-06-2, "percent_amount": None}>,
<ImpactedSubstance: {"cas_number": 115-96-8, "percent_amount": 15.0}>,
...
Testing
For information on testing, see the Contributing section of the documentation.
License
Granta MI BoM Analytics is provided under the terms of the MIT license. You can find this license in the LICENSE file at the root of the repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file ansys_grantami_bomanalytics-1.1.3-py3-none-any.whl
.
File metadata
- Download URL: ansys_grantami_bomanalytics-1.1.3-py3-none-any.whl
- Upload date:
- Size: 41.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b988189c98c56a3029e31f82c5937b33d055066557d748f7735fcfce754095a |
|
MD5 | 479e6c0cdcdf58c4cbf6c47c66ea6661 |
|
BLAKE2b-256 | d1b2f968f008b0c5c74b58e75021c13434287142c7845227de1676ace2578ca1 |