aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/tibber_prices.py
blob: 809a74ccac90a49d6a7168280ead3e2659139fcc (plain) (blame)
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
#!/usr/bin/env python3
''' import energy prices from tibber '''

import os
import sys
from datetime import datetime
from datetime import timedelta
from tzlocal import get_localzone
import requests

import common


# variables
apiKey = os.environ['el_tibber_token']
apiUrl = "https://api.tibber.com/v1-beta/gql"

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 {
                    currentSubscription{
                        priceInfo{
                            today { total energy tax startsAt level currency }
                            tomorrow { total energy tax startsAt level currency }
                        }
                    }
                }
            } }"""}

    response = requests.post(url, headers=hdr, json=body, timeout=10)
    if response.status_code != 200:
        print(response.status_code)
        print("Oh shit")
        response.raise_for_status()

except requests.exceptions.RequestException as e:
    print("oh lol")
    sys.exit(e)

data = response.json()

numdata = len(data["data"]["viewer"]["homes"][0]["currentSubscription"]["priceInfo"]["today"]) + len(data["data"]["viewer"]["homes"][0]["currentSubscription"]["priceInfo"]["tomorrow"])

print("Got " + str(numdata) + " rows from Tibber")

### insert data into database

# prices
prices = []
for item in data["data"]["viewer"]["homes"][0]["currentSubscription"]["priceInfo"]["today"]:
    prices.append((
        item["startsAt"],
        item["total"],
        item["energy"],
        item["tax"],
        item["level"]))

for item in data["data"]["viewer"]["homes"][0]["currentSubscription"]["priceInfo"]["tomorrow"]:
    prices.append((
        item["startsAt"],
        item["total"],
        item["energy"],
        item["tax"],
        item["level"]))

# SQL
sql =  """INSERT INTO tibber_prices
          VALUES(%s, %s, %s, %s, %s)
          ON CONFLICT (startsat) DO NOTHING""",

common.dbi(sql, prices, verbose=True)