Metadata-Version: 2.4
Name: brightway-basic-explorer
Version: 0.9.dev2
Summary: Implement basic GUI to explorer brightway ativities
Author-email: Benoît GSCHWIND <benoit.gschwind@minesparis.psl.eu>, OIE - Mines Paris PSL <benoit.gschwind@minesparis.psl.eu>
Maintainer-email: Benoît GSCHWIND <benoit.gschwind@minesparis.psl.eu>
Project-URL: Homepage, https://github.com/gschwind/brightway-basic-explorer
Project-URL: Repository, https://github.com/gschwind/brightway-basic-explorer
Project-URL: Documentation, https://github.com/gschwind/brightway-basic-explorer
Project-URL: Issues, https://github.com/gschwind/brightway-basic-explorer/issues
Keywords: lca,ecoinvent,brightway
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: ipython
Dynamic: license-file

# Brightway Basic Explorer

Implement a basic activity explorer mostly to use in interractive python such as notebooks, ipython and spyder.

# Install

```
pip install brightway_basic_explorer
```

# Sample and Documentation

![Sample Window](https://github.com/gschwind/brightway-basic-explorer/raw/main/doc/sample-window.png)

```python
import bw2data
from brightway_basic_explorer import show_activity, close_all

db = bw2data.Database("ecoinvent-3.11-cutoff")

act = db.search("570kWp")

# Show the first activity
show_activity(act[0])

# Close all activity windows
close_all()
```
