Metadata-Version: 2.1
Name: galileo-jupyter
Version: 0.0.2.dev4
Summary: Galileo Jupyter: Tools for analyzing galileo experiments
Home-page: https://github.com/edgerun/galileo-jupyter
Author: Thomas Rausch, Philipp Raith
Author-email: t.rausch@dsg.tuwien.ac.at, p.raith@dsg.tuwien.ac.at
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

galileo-jupyter
===============

Tools for analyzing galileo experiments.

Configuration
-------------

Create a `$HOME/.galileojp` and fill with environment variables that configure the database access to galileo-db.
For example:

```
galileo_expdb_driver=mixed

galileo_expdb_mysql_host=localhost
galileo_expdb_mysql_port=3307
galileo_expdb_mysql_db=galileo
galileo_expdb_mysql_user=galileo
galileo_expdb_mysql_password=mypassword
galileo_expdb_influxdb_url=http://localhost:8086
galileo_expdb_influxdb_token=...
galileo_expdb_influxdb_timeout=10000
galileo_expdb_influxdb_org=galileo
galileo_expdb_influxdb_org_id=...
```

Usage
-----

Then you can run

```python
from galileojp.frames import MixedExperimentFrameGateway

efg = MixedExperimentFrameGateway.from_env()
efg.telemetry('my-exp-id') # returns a dataframe containing the telemetry for the given experiment
```


