GitHub: github.com/euanacampbell/octopus_energy_api
PyPi: pypi.org/project/octopus-energy-api
pip install octopus-energy-api
from octopus_energy_api import oe_api
Two ways of creating an API instance.
Load access details in manually - Can be found using this fantastic tutorial by Guy Lipman guylipman.medium.com.
from octopus_energy_api import oe_api
account_number = ""
api_key = ""
mpan = ""
serial_number = ""
energy_api = oe_api(account_number, api_key, mpan=mpan, serial_number=serial_number)
Get mpan and serial numbers from account number + api key. (currently only works for single property accounts)
from octopus_energy_api import oe_api
api_key = "value"
account_number = "value"
energy_api = oe_api(account_number, api_key)
energy_api.account_details()
Getting all consumption data.
today = datetime.date.today() # setting end date to today
start = today.replace(day=1) # setting start date to the beginning of the month
energy_api.consumption(start, today)
Getting calculated consumption data - total, mean, and median.
today = datetime.date.today() # setting end date to today
start = today.replace(day=1) # setting start date to the beginning of the month
energy_api.consumption_total(start, today)
energy_api.consumption_mean(start, today)
energy_api.consumption_median(start, today)
Price of consumption.
today = datetime.today()
start = today - timedelta(days=300)
electric_rate = 2.73
energy_api.consumption_cost(start, today, electric_rate)
energy_api.products()
energy_api.meter_point()