-
Notifications
You must be signed in to change notification settings - Fork 6
/
kostal-piko-dataexport.py
181 lines (140 loc) · 5.63 KB
/
kostal-piko-dataexport.py
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#!/usr/bin/env python3
import argparse
import json
import os
import time
import math
from datetime import datetime
from pprint import pprint
import psycopg2
import requests
from influxdb import InfluxDBClient
from influxdb_client import InfluxDBClient as InfluxDB2Client
from influxdb_client.client.write_api import SYNCHRONOUS
data_mapping = {
'pv_generator_dc_input_1_voltage': 33555202,
'pv_generator_dc_input_1_current': 33555201,
'pv_generator_dc_input_1_power': 33555203,
#'pv_generator_dc_input_2_voltage': 33555458,
#'pv_generator_dc_input_2_current': 33555457,
#'pv_generator_dc_input_2_power': 33555459,
'house_home_consumption_covered_by_solar_generator': 83886336,
#'house_home_consumption_covered_by_battery': 83886592,
'house_home_consumption_covered_by_grid': 83886848,
'house_phase_selective_home_consumption_phase_1': 83887106,
'house_phase_selective_home_consumption_phase_2': 83887362,
'house_phase_selective_home_consumption_phase_3': 83887618,
'grid_grid_parameters_output_power': 67109120,
'grid_grid_parameters_grid_frequency': 67110400,
'grid_grid_parameters_cos': 67110656,
#'grid_grid_parameters_limitation_on': 67110144,
'grid_phase_1_voltage': 67109378,
'grid_phase_1_current': 67109377,
'grid_phase_1_power': 67109379,
'grid_phase_2_voltage': 67109634,
'grid_phase_2_current': 67109633,
'grid_phase_2_power': 67109635,
'grid_phase_3_voltage': 67109890,
'grid_phase_3_current': 67109889,
'grid_phase_3_power': 67109891,
'stats_total_yield': 251658753,
'stats_total_operation_time': 251658496,
'stats_total_total_home_consumption': 251659009,
'stats_total_self_consumption_kwh': 251659265,
'stats_total_self_consumption_rate': 251659280,
'stats_total_degree_of_self_sufficiency': 251659281,
'stats_day_yield': 251658754,
'stats_day_total_home_consumption': 251659010,
'stats_day_self_consumption_kwh': 251659266,
'stats_day_self_consumption_rate': 251659278,
'stats_day_degree_of_self_sufficiency': 251659279,
}
def get_key_by_value(dict_object, search_value):
return next(key for key, value in dict_object.items() if value == search_value)
def get_data():
url = 'http://{}/api/dxs.json'.format(os.environ['KOSTAL_HOST'])
auth = (os.environ['KOSTAL_USERNAME'], os.environ['KOSTAL_PASSWORD'])
current_values = {}
query_max_size = 25
num_requests = math.ceil(len(list(data_mapping)) / query_max_size)
for query_index in range(num_requests):
slice_from = query_index * query_max_size
slice_to = (query_index + 1) * query_max_size
payload = { 'dxsEntries': [data_mapping[k] for k in list(data_mapping)[slice_from:slice_to]] }
response = requests.get(url, auth=auth, params=payload, timeout=5)
json_data = json.loads(response.text)
if json_data['status']['code'] != 0:
raise RuntimeError('Kostal API returned non zero status code')
for entry in json_data['dxsEntries']:
entry_name = get_key_by_value(data_mapping, entry['dxsId'])
current_values[entry_name] = float(entry['value'] or 0)
if len(current_values) != len(data_mapping):
raise RuntimeError('Failed to scrape all data fields')
return current_values
def insert_data_into_postgres(current_values):
params = {
"host": os.environ['DB_HOST'],
"port": os.environ['DB_PORT'],
"database": os.environ['DB_NAME'],
"user": os.environ['DB_USER'],
"password": os.environ['DB_PASSWORD'],
}
conn = psycopg2.connect(**params)
keys = ", ".join(current_values.keys())
values = ", ".join(str(val) for val in current_values.values())
sql_cmd = "INSERT INTO pvwr({}) VALUES ({})".format(keys, values)
cursor = conn.cursor()
cursor.execute(sql_cmd)
conn.commit()
cursor.close()
conn.close()
def insert_data_into_influx(current_values):
influxdb_name = os.environ['INFLUXDB_NAME']
influxClient = InfluxDBClient(
host=os.environ['INFLUXDB_HOST'],
port=os.environ['INFLUXDB_PORT'],
username=os.environ['INFLUXDB_USER'],
password=os.environ['INFLUXDB_PASSWORD']
)
current_time = datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%SZ')
influxClient.write_points(
[{ "measurement": "pvwr", "time": current_time, "fields": current_values }],
database=influxdb_name
)
def insert_data_into_influx2(current_values):
org = os.environ['INFLUXDB_ORG']
bucket = os.environ['INFLUXDB_BUCKET']
influxClient = InfluxDB2Client(
url=os.environ['INFLUXDB_URL'],
token=os.environ['INFLUXDB_TOKEN'],
)
write_api = influxClient.write_api(write_options=SYNCHRONOUS)
current_values_string = ",".join([f"{key}={val}" for key, val in current_values.items()])
data = "pvwr,pvwr=pvwr " + current_values_string
write_api.write(bucket, org, data)
def main():
parser = argparse.ArgumentParser(description='Kostal Dataexporter')
parser.add_argument('--postgres', type=int, default=0, choices=[0, 1])
parser.add_argument('--influx', type=int, default=0, choices=[0, 1])
parser.add_argument('--influx2', type=int, default=1, choices=[0, 1])
parser.add_argument('--interval', type=int, default=30, help="Scrape interval")
parser.add_argument('--oneshot', action="store_true", help="Scrape once and print results")
args = parser.parse_args()
if args.oneshot:
pprint(get_data())
exit(0)
try:
while True:
print('Process values on {}'.format(time.asctime()))
current_values = get_data()
if args.postgres == 1:
insert_data_into_postgres(current_values)
if args.influx == 1:
insert_data_into_influx(current_values)
if args.influx2 == 1:
insert_data_into_influx2(current_values)
time.sleep(args.interval)
except KeyboardInterrupt:
return
if __name__ == '__main__':
main()