Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brightway-lca/brightway2-data
Tools for the management of inventory databases and impact assessment methods. Part of the Brightway LCA framework.
https://github.com/brightway-lca/brightway2-data
brightway data life-cycle-assessment python
Last synced: about 2 months ago
JSON representation
Tools for the management of inventory databases and impact assessment methods. Part of the Brightway LCA framework.
- Host: GitHub
- URL: https://github.com/brightway-lca/brightway2-data
- Owner: brightway-lca
- License: bsd-3-clause
- Created: 2020-03-11T07:36:03.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-12T22:10:50.000Z (about 2 months ago)
- Last Synced: 2024-11-12T23:20:12.264Z (about 2 months ago)
- Topics: brightway, data, life-cycle-assessment, python
- Language: Python
- Homepage: https://docs.brightway.dev/
- Size: 2.14 MB
- Stars: 10
- Watchers: 6
- Forks: 24
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- open-sustainable-technology - Brightway2 data management - This package provides tools for the management of inventory databases and impact assessment methods. (Industrial Ecology / Life Cycle Assessment)
README
# bw2data
[![PyPI](https://img.shields.io/pypi/v/bw2data.svg)][pypi status]
[![Status](https://img.shields.io/pypi/status/bw2data.svg)][pypi status]
[![Python Version](https://img.shields.io/pypi/pyversions/bw2data)][pypi status]
[![License](https://img.shields.io/pypi/l/bw2data)][license][![Tests](https://github.com/brightway-lca/brightway2-data/actions/workflows/python-test.yml/badge.svg)][tests]
[![Codecov](https://codecov.io/gh/brightway-lca/bw2data/branch/main/graph/badge.svg)][codecov][![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black][pypi status]: https://pypi.org/project/bw2data/
[read the docs]: https://bw2data.readthedocs.io/
[tests]: https://github.com/brightway-lca/brightway2-data/actions?workflow=Tests
[codecov]: https://app.codecov.io/gh/brightway-lca/bw2data
[pre-commit]: https://github.com/pre-commit/pre-commit
[black]: https://github.com/psf/blackThis package provides tools for the management of inventory databases and impact assessment methods.
It is part of the [Brightway LCA framework](https://brightway.dev).
[Online documentation](https://docs.brightway.dev/) is available, and the source code is hosted on [GitHub brightway-lca organization](https://github.com/brightway-lca/brightway2-data).Note that version 4.0 and higher are only compatible with Brightway 2.5, as described in the [changelog](https://github.com/brightway-lca/brightway2-data/blob/main/CHANGES.md).
## Installation
You can install _bw2data_ via [pip] from [PyPI]:
```console
$ pip install bw2data
```## Contributing
Contributions are very welcome.
To learn more, see the [Contributor Guide][Contributor Guide].## License
Distributed under the terms of the [BSD 3 Clause license][License],
_bw2data_ is free and open source software.## Issues
If you encounter any problems,
please [file an issue][Issue Tracker] along with a detailed description.[command-line reference]: https://bw2data.readthedocs.io/en/latest/usage.html
[License]: https://github.com/brightway-lca/bw2data/blob/main/LICENSE
[Contributor Guide]: https://github.com/brightway-lca/bw2data/blob/main/CONTRIBUTING.md
[Issue Tracker]: https://github.com/brightway-lca/bw2data/issues## Building the Documentation
You can build the documentation locally by installing the documentation Conda environment:
```bash
conda env create -f docs/environment.yml
```activating the environment
```bash
conda activate sphinx_bw2data
```and [running the build command](https://www.sphinx-doc.org/en/master/man/sphinx-build.html#sphinx-build):
```bash
sphinx-build docs _build/html --builder=html --jobs=auto --write-all; open _build/html/index.html
```