aboutsummaryrefslogblamecommitdiffstats
path: root/scripts/tibber_consumption.py
blob: f54faa6dc834a3f0ba97688c06f5ffdf9b29b7a9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                      
                                             


          
                                        
 
             

                                 

           
                                      

                                             

                                                             
 
                                                      






                     

                                            

     

                     

                       











                                                               

                  
 
                                                                     




                                   
                                                 












                                                                         










                                        
 
     
                                       



                                                       
#!/usr/bin/env python3
""" import energy consumption from tibber """

import os
import sys
from datetime import datetime, timedelta

import common
import requests
from tzlocal import get_localzone

# 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 {
                    consumption(resolution: HOURLY, last:100) {
                        nodes {
                            from
                            to
                            cost
                            unitPrice
                            unitPriceVAT
                            consumption
                            consumptionUnit
                        }
                    }
                }
            } }"""
    }

    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]["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"],
            )
        )

# SQL
sql = """INSERT INTO tibber_consumption
          VALUES(%s, %s, %s, %s, %s, %s, %s)
          ON CONFLICT (startTime,endTime) DO NOTHING"""

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