KE-chain Python SDK
Project description
About pykechain
pykechain is a python library for advanced users and KE-chain configurations to connect and interact fully to all features of KE-chain, the engineering platform of KE-works. With it you can interact with KE-chain, its product information model (PIM), its workflow information model (WIM) and many other aspects of KE-chain from python scripts or iPython / Jupyter notebooks.
It requires normal user access to a KE-chain (version 2) instance for it to work.
Basic usage
Ensure you have member access to a KE-chain instance and login:
from pykechain import Client kec = Client(url='https://kec2api.ke-chain.com') kec.login(username='demo_user', password='pastaplease')
Now interact with it:
project = kec.scope('Bike Project') for part in project.parts(): print(part.name)
Installation
pykechain is easily installed using pip. pykechain is Python 2.7, 3.4, 3.5, 3.6 and 3.7 compatible:
pip install pykechain
Or if you want to live on the edge, install the latest and greatest from the master branch:
pip install https://github.com/KE-works/pykechain/archive/master.zip
In scripts you can either use [Pipenv]() or a pip requirements.txt file to install pykechain as a requirement
in a Pipfile:
[packages] pykechain = "*" # or when you want to install a certain branch pykechain = {ref = "master", git = "https://github.com/KE-works/pykechain"}
in a pip requirements.txt:
pykechain # or when you want to install a certain branch i.e. `master` git+https://github.com/KE-works/pykechain.git@master#egg=pykechain
Changelog
A proper changelog is maintained in the Changelog
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 pykechain-2.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pykechain-2.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 94.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 563e75a97803214d98ad6d8480a4fe37c49fcea067379980d17de45481d7b0d5 |
|
MD5 | 85ee2157d762a87cfd6ffe9b8dda80d5 |
|
BLAKE2b-256 | b3693b7f234c0610b635e2ada9d29819c2371b47914925bff5ea3d808bec452c |