Metadata-Version: 2.1
Name: inselpy
Version: 0.0.2
Summary: A python wrapper for INSEL (insel.eu)
Home-page: https://python.ericduminil.com/objects.html#insel
Author: Eric Duminil
Author-email: inselpy@ericduminil.com
License: UNKNOWN
Project-URL: Bug Tracker, https://transfer.hft-stuttgart.de/gitlab/insel/insel-8-3/-/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# INSELpy

This module allows to execute [INSEL](https://insel.eu/en/home_en.html) models from Python, and can be used to write unit tests for INSEL blocks and models.

```python
>>> import insel
>>> insel.block('sum', 1, 2)
3.0
>>> insel.block('do', parameters = [1, 10, 1])
[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0]
>>> insel.template('a_times_b', a=4, b=5)
20.0
>>> insel.run('/usr/local/insel/examples/meteorology/sunae.vseit')
[]
```



