Skip to main content

A python wrapper for the Tibber API.

Project description

tibber.py - The Python wrapper for the Tibber API

MIT license badge Language grade: Python Code Coverage PyPI version

Tests 3.9 Tests 3.10 Publish to PyPi status

Head over to https://tibberpy.readthedocs.io/en/latest/ to read the documentation for this library!

A python wrapper package for communication with the Tibber API. This package aims to cover all functionalities of the Tibber API. You can read all the capabilites of the API and explore it with Tibbers' API explorer.

Every field of the API types should be found in the corresponding tibber.type (e.g. the size: Int field of Home type, should be accessed in the tibber.py package as: Home.size and return an int). In addition to these "1 to 1", field to property/method functions, there might be extra properties or methods for simpler access of common properties (one example: it is possible to simply write home.address1 instead of home.address.address1, although the latter is also supported). The docstrings of the tibber.types correspond to the description of each type in the api explorer docs (located on the right side of the Tibber API explorer).

Installation

Install via pip

python -m pip install tibber.py

Requirements

tibber.py depends only on aiohttp and websockets. As of now, the project requires Python 3.9+.

Examples

Getting basic account data

import tibber

account = tibber.Account(tibber.DEMO_TOKEN) # Log in with an access token. All information gets updated here and stored in cache.

# These properties are retrieved from cache
print(account.name)         # "Arya Stark"
print(account.user_id)      # "df4b53bf-0709-4679-8744-08876cbb03c1"
print(account.account_type) # ["tibber", "customer"]
print(account.login)        # "edgeir@tibber.com"

Getting basic home data

import tibber

account = tibber.Account(tibber.DEMO_TOKEN)
home = account.homes[0]

print(home.id)                     # "cc83e83e-8cbf-4595-9bf7-c3cf192f7d9c"
print(home.time_zone)              # "Europe/Oslo"
print(home.app_nickname)           # "Ulltang casa"
print(home.app_avatar)             # "FLOORHOUSE2"
print(home.size)                   # 200
print(home.type)                   # "HOUSE"
print(home.number_of_residents)    # 4
print(home.primary_heating_source) # "AIR2AIR_HEATPUMP"
print(home.has_ventilation_system) # True
print(home.main_fuse_size)         # 63

Reading historical data

import tibber

account = tibber.Account(tibber.DEMO_TOKEN)
home = account.homes[0]

# Get the first 10 hours of consumption available
hour_data = home.fetch_consumption("HOURLY", first=10)

# Get the last 3 days of consumption
day_data = home.fetch_consumption("DAILY", last=3)

# Get last 2 months
month_data = home.fetch_consumption("MONTHLY", last=2)

for hour in hour_data:
    print(hour.from_time)
    print(hour.to_time)
    print(f"{hour.unit_price}{hour.currency}")
    print(hour.consumption)
    print(hour.cost)

Reading live measurements

Note how you can register multiple callbacks for the same event. These will be run in order of which they were registered.

INFO: In the future, events should be declared async and all callbacks will be ran asynchronously instead of sequentially.

import tibber

account = tibber.Account(tibber.DEMO_TOKEN)
home = account.homes[0]

@home.event("live_measurement")
def show_current_power(data):
  print(data.power)

# Multiple callback functions for the same event!
@home.event("live_measurement")
def show_accumulated_cost(data):
  print(f"{data.accumulated_cost} {data.currency}")
  
# Start the live feed. This runs forever.
home.start_livefeed()

100% API coverage TODO / Progress list

All the API features are documented here: https://developer.tibber.com/docs/reference

  • Address
  • Consumption
  • ContactInfo
  • Home
  • HomeConsumptionConnection
  • HomeConsumptionEdge
  • HomeConsumptionPageInfo
  • HomeFeatures
  • HomeProductionConnection
  • HomeProductionEdge
  • HomeProductionPageInfo
  • LegalEntity
  • LiveMeasurement
  • MeterReadingResponse - // Part of RootMutation which has not been developed yet
  • MeteringPointData
  • Price
  • PriceInfo
  • PriceRating
  • PriceRatingEntry
  • PriceRatingThresholdPercentages
  • PriceRatingType
  • Production
  • PushNotificationResponse
  • RootMutation - // Only push notification
  • RootSubscription
  • Subscription - // Will be rewritten
  • SubscriptionPriceConnection - // Missing?
  • SubscriptionPriceConnectionPageInfo - // Missing?
  • SubscriptionPriceEdge - // Missing?
  • Viewer

v1.0.0 TODO list

A TODO list of things to be done before v1.0.0 is released.

  • Fix issue #6
  • Readable and understandable documentation
  • Minimum 90% test coverage
  • 100% API coverage
  • Implement certain fetch methods to fetch specific data (and not just get from cache)
  • Look into refactoring the QueryBuilder
  • Better error handling. Throw more detailed exceptions.
  • Standardize formatting (perhaps black)
  • Add explanation on how to contribute

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

tibber.py-0.1.1.tar.gz (21.3 kB view hashes)

Uploaded Source

Built Distribution

tibber.py-0.1.1-py3-none-any.whl (31.3 kB view hashes)

Uploaded Python 3

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