aboutsummaryrefslogtreecommitdiffstats
path: root/tibber_consumption2pgsql.py
diff options
context:
space:
mode:
authorDennis Eriksen <d@ennis.no>2023-02-01 20:32:11 +0100
committerDennis Eriksen <d@ennis.no>2023-02-01 20:32:11 +0100
commit8d186d39483beff64a1c11f80c6ca5e56dd7bbc5 (patch)
tree2c5a64ace4bd8eabd4d65014c5313bd7edd76191 /tibber_consumption2pgsql.py
parentrun queue in batches (diff)
downloadenergyscripts-8d186d39483beff64a1c11f80c6ca5e56dd7bbc5.tar.gz
moving and renaming/breaking everything
Diffstat (limited to 'tibber_consumption2pgsql.py')
-rwxr-xr-xtibber_consumption2pgsql.py102
1 files changed, 0 insertions, 102 deletions
diff --git a/tibber_consumption2pgsql.py b/tibber_consumption2pgsql.py
deleted file mode 100755
index e710b8f..0000000
--- a/tibber_consumption2pgsql.py
+++ /dev/null
@@ -1,102 +0,0 @@
-#!/bin/python3
-
-import os
-import sys
-import json
-import psycopg2
-import requests
-
-from datetime import datetime
-from datetime import timedelta
-from tzlocal import get_localzone
-
-
-# variables
-apiKey = os.environ['el_tibber_token']
-apiUrl = "https://api.tibber.com/v1-beta/gql"
-
-pg_db = os.environ['el_pg_db']
-pg_host = os.environ['el_pg_host']
-pg_table = "tibber_consumption"
-
-startTime = datetime.now(get_localzone()) - timedelta(days = 1)
-startTime = startTime.isoformat('T')
-
-endTime = datetime.now(get_localzone()).isoformat('T')
-
-# Get the data
-try:
- url = apiUrl
-
- # Request headers
- hdr = {
- 'Authorization': "Bearer " + apiKey,
- 'Content-Type': 'application/json',
- }
-
- body = {"query":"""{
- viewer {
- homes {
- consumption(resolution: HOURLY, last:100) {
- nodes {
- from
- to
- cost
- unitPrice
- unitPriceVAT
- consumption
- consumptionUnit
- }
- }
- }
- } }"""}
-
- response = requests.post(url, headers=hdr, json=body)
- if response.status_code != 200:
- print(response.status_code)
- print("Oh shit")
- response.raise_for_status()
-
-except Exception as e:
- print("oh lol")
- sys.exit(e)
-
-data = response.json()
-
-numdata = len(data["data"]["viewer"]["homes"][0]["consumption"]["nodes"])
-print("Got " + str(numdata) + " rows from Tibber")
-
-### insert data into database
-# consumption
-values = []
-for item in data["data"]["viewer"]["homes"][0]["consumption"]["nodes"]:
- if item["consumption"] is not None:
- values.append((item["from"],item["to"],item["consumption"],item["consumptionUnit"],item["cost"],item["unitPrice"],item["unitPriceVAT"]))
-
-# connect to db
-conn = psycopg2.connect(database=pg_db, host=pg_host)
-cur = conn.cursor()
-
-# count rows before we start
-cur.execute("SELECT COUNT(*) FROM " + pg_table)
-before = cur.fetchone()
-
-# insert data
-try:
- cur.executemany("INSERT INTO " + pg_table + " VALUES(%s,%s,%s,%s,%s,%s,%s) ON CONFLICT (startTime,endTime) DO NOTHING", values)
- conn.commit()
-except Exception as e:
- conn.rollback()
- raise e
-
-# count rows after we finnish
-cur.execute("SELECT COUNT(*) FROM " + pg_table)
-after = cur.fetchone()
-
-# count *new* rows
-newRows = after[0] - before[0]
-
-# close connection
-conn.close()
-
-print("Successfully inserted " + str(newRows) + " records into the database")