Metadata-Version: 2.1
Name: forge-python
Version: 0.0.5
Summary: Python client library for theforge.bio API and link.
Project-URL: Homepage, https://github.com/forge-industrial
Project-URL: Bug Tracker, https://github.com/forge-industrial/issues
Author-email: "Forge Software Inc." <developers@theforge.bio>
License-File: LICENSE
Keywords: api,client,forge,theforge.bio
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: colorama>=0.4.6
Requires-Dist: numpy>=1.20.1
Requires-Dist: pandas>=1.2.3
Requires-Dist: requests>=2.25.1
Requires-Dist: time>=0.0.0
Description-Content-Type: text/markdown

# forge-python

[forge-python](https://www.theforge.bio/) enables you to create, change, and develop industrial process simulations. It is an open source tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

# how to use

## installment requirements

```{.python }
pip install forge-python colorama
```

## example: sending sensor data

```{.python }
from forge_python import forge
sensor = forge.sensor()
sensor.authenticate('device6ef0e2a6f88f481ea81e388d8be91a1c')
sensor.send({'temperature': 95.5})
```
