-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathexample.py
More file actions
executable file
·152 lines (121 loc) · 5.34 KB
/
Copy pathexample.py
File metadata and controls
executable file
·152 lines (121 loc) · 5.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
"""Main IEC Python API module."""
import asyncio
import concurrent.futures
import logging
import os
from datetime import datetime, timedelta
import aiohttp
from iec_api.iec_client import IecClient
from iec_api.login import IECLoginError
from iec_api.models.exceptions import IECError
from iec_api.usage_calculator.calculator import UsageCalculator
logger = logging.getLogger(__name__)
async def main():
logging.basicConfig(level=logging.DEBUG)
session = aiohttp.ClientSession(connector=aiohttp.TCPConnector(ssl=False), timeout=aiohttp.ClientTimeout(total=10))
try:
# Example of usage
client = IecClient(123456782, session)
token_json_file = "token.json"
if os.path.exists(token_json_file):
await client.load_token_from_file(token_json_file)
else:
try:
otp_type = await client.login_with_id()
with concurrent.futures.ThreadPoolExecutor() as pool:
otp = await asyncio.get_event_loop().run_in_executor(
pool, input, f"Enter the OTP sent to {otp_type}: "
)
await client.verify_otp(otp)
await client.save_token_to_file(token_json_file)
except IECLoginError as err:
logger.error(f"Failed Login: (Code {err.code}): {err.error}")
raise
# refresh token example
token = client.get_token()
await client.check_token()
new_token = client.get_token()
if token != new_token:
print("Token refreshed")
await client.save_token_to_file(token_json_file)
print("id_token: " + token.id_token)
tariff = await client.get_kwh_tariff()
print(tariff)
profile = await client.get_masa_contact_account_user_profile()
print(profile)
# client.manual_login()
customer = await client.get_customer()
print(customer)
contracts = await client.get_contracts()
for contract in contracts:
print(contract)
if customer and contracts:
reading = await client.get_last_meter_reading(customer.bp_number, contracts[0].contract_id)
print(reading)
devices = await client.get_devices()
if devices:
device = devices[0]
print(device)
if device.device_number and device.device_code:
device_details = await client.get_device_by_device_id(device.device_number)
print(device_details)
# Get Remote Readings from the last three days
selected_date: datetime = datetime.now() - timedelta(days=30)
remote_readings = await client.get_remote_reading(
"Consumption", device.device_number, int(device.device_code), selected_date, selected_date
)
if remote_readings and remote_readings.meter_list and len(remote_readings.meter_list) > 0:
print(
"Got "
+ str(len(remote_readings.meter_list[0].period_consumptions))
+ " readings for "
+ selected_date.strftime("%Y-%m-%d")
)
for remote_reading in remote_readings.meter_list[0].period_consumptions:
print(remote_reading.interval, remote_reading.consumption)
else:
print("Got no readings")
print(await client.get_electric_bill())
print(await client.get_device_type())
print(await client.get_billing_invoices())
except IECError as err:
logger.error(f"IEC Error: (Code {err.code}): {err.error}")
finally:
await session.close()
#
# Example of usage of UsageCalculator
#
session = aiohttp.ClientSession(connector=aiohttp.TCPConnector(ssl=False), timeout=aiohttp.ClientTimeout(total=10))
try:
usage_calculator = UsageCalculator()
await usage_calculator.load_data(session)
# Get kWh Tariff
tariff = usage_calculator.get_kwh_tariff()
print(f"kWh Tariff: {tariff} ILS/kWh")
# Get all device names
device_names = usage_calculator.get_device_names()
print(device_names)
# Select "Air-conditioner"
device_name = device_names[8]
print(f"Selected device: [{device_name}]")
# Get device info by name
calc_device = usage_calculator.get_device_info_by_name(device_name)
print(calc_device)
# Get default utility consumption by time
consumption = usage_calculator.get_consumption_by_device_and_time(device_name, timedelta(days=1), None)
print(consumption)
# You can specify specific power usage of your device:
# e.g. 3.5HP air-conditioner running for 6 hours
consumption = usage_calculator.get_consumption_by_device_and_time(
device_name, timedelta(hours=6), custom_usage_value=3.5
)
if consumption:
print(
f"Running a {consumption.power} {consumption.power_unit.name} {consumption.name} "
f"for {consumption.duration.seconds // (60 * 60)} hours would cost: "
f"{round(consumption.cost, 2)} ILS"
)
finally:
await session.close()
if __name__ == "__main__": # pragma: no cover
asyncio.run(main())