Documentation¶
This is the documentation for the Python package
factorymind which makes it easier to interact with the data
on the FactoryMind platform.
Installation¶
From PyPi:
pip install factorymind
From source:
<TODO: Document>
Use¶
To interact with your data on the FactoryMind platform, run
>>> from factorymind.data_loader import FactoryDB
>>> mydb = FactoryDB(apikey=YOUR-API-KEY)
>>> mydb.list_data_sources()
['example_data.energy_demand', 'example_data.sensors', 'sensors.sensors', 'sensors.sensors_metadata']
See module factorymind.data_loader module for more information and examples.