Metadata-Version: 2.4
Name: nadi-py
Version: 0.7.2
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Topic :: Scientific/Engineering :: Hydrology
License-File: LICENSE
Summary: Python bindings to the Network Analysis and Data Integration (NADI) System
Keywords: river,hydrology,network analysis,environmental modeling
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: homepage, https://nadi-system.github.io/
Project-URL: documentation, https://nadi-system.github.io/python.html
Project-URL: repository, https://github.com/Nadi-System/nadi-system

This can be installed from `pypi` with `pip install nadi-py` command.

Then you can simply import and use it:

```python
import nadi

net = nadi.Network.from_str("a -> b")
print([n.NAME for n in net.nodes])
```

The functions are available inside the `nadi.functions` submodule.

```python
import nadi
import nadi.functions as fn

net = nadi.Network.from_str("a -> b")
fn.network.svg_save(net, "test.svg")
```

Refer to examples in [Nadi Book](https://nadi-system.github.io/python.html) for more details.

