Last week, I posted about python-sense, and API wrapper for the internal Sense API. I wrote this so that I could pull data about myself into my own databases, allowing me to use that information for myself. One way I’m doing this is by pulling my room data into an InfluxDB database, letting me run time series queries against my environmental data. #!/usr/bin/env python from influxdb import InfluxDBClient import json import datetime as dt from sense.service import Sense api = Sense() data = ...