From 6aec924e00e5390ea9965c6aebeebd48ad9eebf5 Mon Sep 17 00:00:00 2001 From: Jan Pecinovsky Date: Thu, 22 Feb 2024 16:17:39 +0000 Subject: [PATCH] updated demo's --- .DS_Store | Bin 8196 -> 10244 bytes .gitignore | 1 + demo_energyid_download.ipynb | 31 ++----------------------------- download_prices.ipynb | 16 ++++++++-------- 4 files changed, 11 insertions(+), 37 deletions(-) diff --git a/.DS_Store b/.DS_Store index 2d0914d2a65ac963220e70f11213f1a7b7cee876..f78d6bbb5376585fdb44753967add9abc49c2621 100644 GIT binary patch literal 10244 zcmeHMX>1%t7Jjeo#C_ywhd>BNGKnn`&?G+MBnsge+v6op;yCfxiF4u1xEs64xZ6zk zjN=3&OCWZGqJXqOfYl;?AP_;ok08P>@Pq3Q5?TpG39H=|LcnVG2MC0OkRZUTsvf)N zazIEBLHDTZbydAr_0>DN`qcmcwq=bbfCvD{bTg{Yp`y&i`q^D_Nq$QUQ6zbQL2$qZ z50YS&aEA?{20{&l8VEHIY9Q3W#h?M&v)LtUf`(551gs~Hi`E*iHAr2_S0sWcL z&rp!hPI3{>4j218YtBO%iZU~YB0crTtWVBQ%fd2)RY)>Mn;9;>~Ch~9&zIF zRN6@qm;8^JcG^{--L3P#B7{?YK}@gS z{lKv)zw>2-D9ZI0%)7Ob=}Cq-bU+VuLpy9?PpL6?)Q`Kl!xp3>-|4*v?Ug zn|5V?_a^5nyzZlF$+CiKtv&zL{bhOFT)S9$RaJiJ@B2%a6;+$lw^Qx!w+0Oyr7Y0>tq+blD)JLwLZwqe;rePfp44e!cXu9Zrgy>@cMRBENQ%9%x%FP^7esa>7# z5{%P=vR)_mXH(W4S<4&eb1c=Csrw8<*yR{(7DLugD!iv&Tc+)0J?$BjN<)@;^GfYH zwb!Nf%6d{Tu2LJ+-h*U*MR!F@v)ZEdrIRT$t>}gjTd!`=cICvf6@80nyg|K5>!+P# zgqG+kwHOu6tu*tkZ04;=*XtfNZ9X|)+cNDIS>Db1S`EWA&dj@f@uJSnnzqLsPG-#R zF>*@%J%*Ipw^2K{CH1h8It6C$KWA&7*4=b@B;iD-hy}FJvayN!@uC)@CkehU&49#4#|;G#Y-@P%digX zaTRXB>v1E-u@g7rR_wx^xEJ@~tvG})A$me z#+UJRd;{OackwKKh#%p{_z8X{frOGIY0?sDsT7f}l~zj)0>6|GqurvOFC{wBFB3*? z&VM^dd&-7L#~;+#uNxx&oXdmal7*LEwzU4*)oa$@&^qNj!rSr=7Ia(gs|6m;eU)3c z$jMmvT%oB~FUg0`bl`|U>LVvN56R3^^%|dhd7Vs7uFvwTD^^lngufx0K zn;*c(@PGK4{81r)T#QS(PuAl#*no}Lgllju-h?+}4BN;%yKozJ;|@%aZ|*1WJb)=Y zh-n-l4?TqAco^@*yU0KPgh%lh9>){-2zlyX@JW28$n!SkeNIq3S0*+}kZoZ34Qcivn$b3)7!|bg6 zM;%e+Q}D_cWEch~=jRpx^)N877EE>)RAl0;pPVKr$C~iLh>>;jdO^|2^8|U|JY^;W zhRJC{a+5y^o??h zn3x(SYstxoAX}91K28^85mW+U1F{4^s?iRUAIixvGjOb&BrnCL#O&n3+&@`CUPcwd z1ji#QLkUAFC`=iOQS};ZEYxHYWCl47n5wvegexdzZ7lrGJegl5kb@DD-WVpw^Gs!< IyVKN|06=EBmH+?% diff --git a/.gitignore b/.gitignore index d5f9fd3..af9571d 100644 --- a/.gitignore +++ b/.gitignore @@ -163,3 +163,4 @@ secrets.json private_data/ figures/ +temp_notebooks/ \ No newline at end of file diff --git a/demo_energyid_download.ipynb b/demo_energyid_download.ipynb index 8e67add..69f0529 100644 --- a/demo_energyid_download.ipynb +++ b/demo_energyid_download.ipynb @@ -86,21 +86,12 @@ "source": [ "energy_balance = record.get_data(\n", " name='energyBalanceByCarrier',\n", - " start='2022-12-01',\n", - " end='2023-12-01',\n", + " start='2023-01-01',\n", + " end='2024-01-01',\n", " interval='PT15M'\n", ")" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "energy_balance" - ] - }, { "cell_type": "code", "execution_count": null, @@ -121,24 +112,6 @@ "energy_balance.index.name = None" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "energy_balance" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#energy_balance.to_csv('automatic-readings-PT15M.csv', date_format='%d/%m/%Y %H:%M:%S')" - ] - }, { "cell_type": "code", "execution_count": null, diff --git a/download_prices.ipynb b/download_prices.ipynb index 608d9f1..ca56a1c 100644 --- a/download_prices.ipynb +++ b/download_prices.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -25,7 +25,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -36,7 +36,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -49,7 +49,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -58,7 +58,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -67,7 +67,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -76,7 +76,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [