Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Electric Kiwi integration."""
2 
3 NAME = "Electric Kiwi"
4 DOMAIN = "electric_kiwi"
5 ATTRIBUTION = "Data provided by the Juice Hacker API"
6 
7 OAUTH2_AUTHORIZE = "https://welcome.electrickiwi.co.nz/oauth/authorize"
8 OAUTH2_TOKEN = "https://welcome.electrickiwi.co.nz/oauth/token"
9 API_BASE_URL = "https://api.electrickiwi.co.nz"
10 
11 SCOPE_VALUES = "read_connection_detail read_billing_frequency read_account_running_balance read_consumption_summary read_consumption_averages read_hop_intervals_config read_hop_connection save_hop_connection read_session"
12 
13 HOP_COORDINATOR = "hop_coordinator"
14 ACCOUNT_COORDINATOR = "account_coordinator"