Last updated:
0 purchases
pyfoobot 0.2
A Python wrapper for the FooBot API. It allows you to pull data from your Foobot device.
Installation
pip install pyfootbot
Example
from pyfoobot import Foobot
fb = Foobot("API secret key", "username", "password")
devices = fb.devices()
# Devices is a list, in case you have more than one foobot
device = devices[0]
# Get the most recent sample
latest_data = device.latest()
# Get data from the last hour
last_hour_data = device.data_period(3600, 0)
# Get data for a data range
range_data = device.data_range(start='2016-04-12T11:00:00',
end='2016-04-12T12:00:00',
sampling=0)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.