Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greendelta/olca-ipc.py
https://github.com/greendelta/olca-ipc.py
ipc openlca python
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/greendelta/olca-ipc.py
- Owner: GreenDelta
- License: mpl-2.0
- Created: 2018-04-25T15:39:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T08:32:05.000Z (8 months ago)
- Last Synced: 2024-08-17T10:41:18.052Z (4 months ago)
- Topics: ipc, openlca, python
- Language: Python
- Size: 430 KB
- Stars: 29
- Watchers: 15
- Forks: 17
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# olca-ipc
`olca-ipc` is a Python package for inter-process communication (IPC) with
openLCA. With this, it is possible to call functions of openLCA and processing
their results in Python. It implements the unified IPC protocol of openLCA for
JSON-RPC and REST APIs. The documentation of these protocols and examples can be
found here:__[https://greendelta.github.io/openLCA-ApiDoc](https://greendelta.github.io/openLCA-ApiDoc)__.
This package is available on [pypi.org](https://pypi.org/project/olca-ipc) and
can be installed / updated like this:```bash
pip install -U olca-ipc
```Note that this version only works with the openLCA >= 2.x and requires
**Python >= 3.11**. The last stable version for openLCA 1.x is
[0.0.12](https://pypi.org/project/olca-ipc/0.0.12/):```bash
# for openLCA 1.x
pip install olca-ipc==0.0.12
```The source code and API documentation of the version for openLCA 1.x is in the
`v1` branch of this repository. If you just want to read and write data for
openLCA 2, you can also just use the
[olca-schema package](https://pypi.org/project/olca-schema/), which is a
dependency of `olca-ipc`.