pyfoobot

A Python wrapper around the Foobot air quality API.


Keywords
air, quality, sensor, IoT
License
MIT
Install
pip install pyfoobot==0.2

Documentation

pyfoobot

https://travis-ci.org/philipbl/pyfoobot.svg?branch=master

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)