11 lines
330 B
Python
11 lines
330 B
Python
"""Tibber dynamic electricity pricing integration.
|
|||
|
|
|
||
|
|
This package provides:
|
||
|
|
- ``client``: HTTP client for the Tibber GraphQL API (price fetching).
|
||
|
|
- Custom exceptions: ``TibberError`` (base) and ``TibberAuthError`` (auth failure).
|
||
|
|
|
||
|
|
Usage::
|
||
|
|
|
||
|
|
from app.integrations.tibber.client import fetch_price_range, TibberAuthError
|
||
|
|
"""
|