Metadata-Version: 2.1
Name: fleetglue-client
Version: 2.0.1
Summary: Python client for FleetGlue API
Author: Pablo Díaz Ogni
Author-email: pablo@fleetglue.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: requests (>=2.28.1,<3.0.0)
Description-Content-Type: text/markdown

# FleetGlue API Python Client

A Python library for interfacing with the [FleetGlue REST API](https://docs.freedomrobotics.ai/reference#rest-api) in a Pythonic way, presenting Accounts, Devices, Alerts, and other objects as instances of Python classes. Currently only supports reading from the API ("GET" requests).

# Installation
```
$ pip(3) install fleetglue-client
```

# Simple API examples
## Instantiating the API

With a token and secret:
```
from fleetglue_client import FleetGlueClient
client = FleetGlueClient(token = "TXXX", secret = "Sxxx")
```

With a username and password:
```
from fleetglue_client import FleetGlueClient
client = FleetGlueClient(username = "your@email.com", password = "foo")
```

With a saved credentials file:
```
from fleetglue_client import FleetGlueClient
client = FleetGlueClient()
```

The file should be in `~/.fleetglue/credentials` and contain a JSON structure with `token` and `secret` fields, e.g. `{"token":"TXXX", "secret":"SXXX"}`.

## Manipulating accounts

Getting a list of accounts you have access to:
```
for account in client.accounts:
    print(account)
````

## Manipulating devices

Getting a list of devices in the first account you have access to:

```
for device in client.accounts[0].devices:
    print(device.name)
```

You can fetch a specific device by its ID:
```
device = client.accounts[0].device("Dxxxxxxxxxxxx")
```
or search for it by its name, assuming that name is unique:
```
device = client.accounts[0].find_device("myrobot")
```

## Getting data from devices

Getting the most recent value from a ROS topic:
```
device = client.accounts[0].find_device("myrobot")
print(device.last_data("/gps/fix"))
```

Getting full data from a time interval:
```
device = client.accounts[0].find_device("myrobot")

# fetch last 1000 s of data
for message in device.data("/gps/fix", start = time.time() - 1000, end = time.time()):
    print(message)
```

# Advanced API examples

See the demo\_.py files. (TODO: more data analysis demos.)


# Distribution

First you will need to have a local `~/.pypirc` file with the configurations for both Test PyPi and the production one. E.g.

```
[testpypi]
  username = __token__
  password = <request for original token>

[pypi]
  username = __token__
  password = <request for original token>
```

## Steps

* Publish to testpypi:

```
REPOSITORY=testpypi ./publish_to_pypi.sh
```

* Check that it's working properly:

```
pip install --index-url https://test.pypi.org/simple fleetglue_client
```

* Push to actual PyPi

```
REPOSITORY=pypi ./publish_to_pypi.sh
```

