Skip to main content

API to get oil tank from Kingspan SENSiT sensors

Project description

kingspan-connect-sensor

build: build:

API to get oil tank from Kingspan SENSiT sensors

To make use of the API, you will need the credentials you used to register with the App. You do not need other details such as the tank ID as these are already associated with your account.

Installation

python3 -m pip kingspan-connect-sensor

Usage

NOTE from version 2.0.0, the API changes to use attributes rather than methods for tank parameters.

Reading documents:

from connectsensor import SensorClient

client = SensorClient()
client.login("test@example.com", "s3cret")
tanks = client.tanks
tank_level = tanks[0].level

The tanks method returns a Tanks object which can be queried for the status of the specific tank.

Async Usage

From version 2.0.0, an asyncio verison of the client is available:

async with AsyncSensorClient() as client:
    await client.login("test@example.com", "s3cret")
    tanks = await client.tanks
    tank_level = await tanks[0].level
    tank_capcity = await tanks[0].capacity
    tank_percent = 100 * (tank_level / tank_percent)
    print(f"Tank is {tank_percent:.1f}% full")

Tanks object

As of version 3.0, history no longer returns a Pandas dataframe to simplify packge dependencies. Instead, an list of dicts is returned, where each list element is a sample from the web API, sorted by logging time. There should be one record per day. Each dict has the following keys:

  • reading_date: a datetime object indicating the time a measurement was made
  • level_percent: integer percentage full
  • level_litres: number of lites in the tank

You can construct a Pandas dataframe simply using:

tanks = await client.tanks
history = await tanks[0].history
df = pd.DataFrame(history)

Scripts

Reporting on the current status of the tank using kingspan-status:

% kingspan-status --username=test@example.com --password=s3cret

Home Tank:
 Capacity = 2000
 Serial Number = 20001999
 Model = Unknown
 Level = 90% (1148 litres)
 Last Read = 2021-10-09 00:42:47.947000

History:
 Reading date           %Full  Litres
 30-Jan-2021 00:29      94     1224 
 31-Jan-2021 00:59      80     1040 
 01-Feb-2021 00:29      78     1008 
 02-Feb-2021 00:59      76     986  

kingspan-notifier can be used to check the status of a tabk and report via email when the tank is likely to run out of oil. As of version 3.0, pandas is no longer installed as a dependency so you must pip install pandas manually to use kingspan-notifier.

% kingspan-notifier --config kingspan.ini
Current level 1148 litres
No notification; 196 days oil remain

Command line options include:

  • --config CONFIG: a config file in ini-format
  • --no-update: don't update cache with new data (defaults to updating the DB cache)
  • --window WINDOW: the number of days history to consider (default: 14 days)
  • --notice NOTICE: the number of days before out-of-oil forecast to warn (default: 14)

An example config file is:

[sensit]
username=test@example.com
password=s3cret
cache=/home/me/kingspan.db
start-date=2021-01-31

[smtp]
server=smtp.isp.co.uk
username=ispuser
email=test@example.com
password=smtps3cret

The cache is an SQLite database and will be intialised if not present.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kingspan_connect_sensor-3.0.4.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

kingspan_connect_sensor-3.0.4-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file kingspan_connect_sensor-3.0.4.tar.gz.

File metadata

  • Download URL: kingspan_connect_sensor-3.0.4.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.13.0 Darwin/24.1.0

File hashes

Hashes for kingspan_connect_sensor-3.0.4.tar.gz
Algorithm Hash digest
SHA256 5956b74fb376d1c6f6a7bca0074325193c4ccca721e4d568e66e0b3dcab30e16
MD5 fe3379407527c3e532b126026328de22
BLAKE2b-256 12d1d702057cb9a4963c7b77e1c60f96a0203b4ee74e44cbe179ed958d669bf6

See more details on using hashes here.

File details

Details for the file kingspan_connect_sensor-3.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for kingspan_connect_sensor-3.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e2def9a2c1dbcf7aaeae195e1efbccfbf21ea1b58faa90ead6c691f8f0a0fbb8
MD5 880212f24df290c2e490a99de70fc1bf
BLAKE2b-256 6cc99f07623480a89e20af795782700634c3ab1ab1363d8808882cfcb77babd7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page