feat: add tibber electricity price provider (#1160)

Signed-off-by: Andreas Schmitz <akkudoktor.net>
Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
This commit is contained in:
Bobby Noelte
2026-07-20 13:43:43 +02:00
committed by GitHub
parent 2ed04d5573
commit cc8193216a
11 changed files with 1027 additions and 40 deletions
@@ -35,6 +35,7 @@ from akkudoktoreos.prediction.elecpriceakkudoktor import ElecPriceAkkudoktor
from akkudoktoreos.prediction.elecpriceenergycharts import ElecPriceEnergyCharts
from akkudoktoreos.prediction.elecpricefixed import ElecPriceFixed
from akkudoktoreos.prediction.elecpriceimport import ElecPriceImport
from akkudoktoreos.prediction.elecpricetibber import ElecPriceTibber
from akkudoktoreos.prediction.feedintarifffixed import FeedInTariffFixed
from akkudoktoreos.prediction.feedintariffimport import FeedInTariffImport
from akkudoktoreos.prediction.loadakkudoktor import (
@@ -79,6 +80,7 @@ elecprice_akkudoktor = ElecPriceAkkudoktor()
elecprice_energy_charts = ElecPriceEnergyCharts()
elecprice_fixed = ElecPriceFixed()
elecprice_import = ElecPriceImport()
elecprice_tibber = ElecPriceTibber()
feedintariff_fixed = FeedInTariffFixed()
feedintariff_import = FeedInTariffImport()
loadforecast_akkudoktor = LoadAkkudoktor()
@@ -103,6 +105,7 @@ def prediction_providers() -> list[
ElecPriceEnergyCharts,
ElecPriceFixed,
ElecPriceImport,
ElecPriceTibber,
FeedInTariffFixed,
FeedInTariffImport,
LoadAkkudoktor,
@@ -130,6 +133,7 @@ def prediction_providers() -> list[
elecprice_energy_charts, \
elecprice_fixed, \
elecprice_import, \
elecprice_tibber, \
feedintariff_fixed, \
feedintariff_import, \
loadforecast_akkudoktor, \
@@ -153,6 +157,7 @@ def prediction_providers() -> list[
elecprice_energy_charts,
elecprice_fixed,
elecprice_import,
elecprice_tibber,
feedintariff_fixed,
feedintariff_import,
loadforecast_akkudoktor,
@@ -181,6 +186,7 @@ class Prediction(PredictionContainer):
ElecPriceEnergyCharts,
ElecPriceFixed,
ElecPriceImport,
ElecPriceTibber,
FeedInTariffFixed,
FeedInTariffImport,
LoadAkkudoktor,