gazpar2haws 0.3.0b15__py3-none-any.whl → 0.3.0b16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gazpar2haws/gazpar.py +11 -10
- {gazpar2haws-0.3.0b15.dist-info → gazpar2haws-0.3.0b16.dist-info}/METADATA +1 -1
- {gazpar2haws-0.3.0b15.dist-info → gazpar2haws-0.3.0b16.dist-info}/RECORD +5 -5
- {gazpar2haws-0.3.0b15.dist-info → gazpar2haws-0.3.0b16.dist-info}/LICENSE +0 -0
- {gazpar2haws-0.3.0b15.dist-info → gazpar2haws-0.3.0b16.dist-info}/WHEEL +0 -0
gazpar2haws/gazpar.py
CHANGED
@@ -100,7 +100,9 @@ class Gazpar:
|
|
100
100
|
last_date_and_value_by_sensor[cost_sensor_name] = await self.find_last_date_and_value(cost_sensor_name)
|
101
101
|
|
102
102
|
# Compute the start date as the minimum of the last dates plus one day
|
103
|
-
start_date = min(
|
103
|
+
start_date = min(
|
104
|
+
min(v[0] for v in last_date_and_value_by_sensor.values()) + timedelta(days=1), self._as_of_date
|
105
|
+
)
|
104
106
|
|
105
107
|
# The end date is the as of date
|
106
108
|
end_date = self._as_of_date
|
@@ -150,18 +152,17 @@ class Gazpar:
|
|
150
152
|
return
|
151
153
|
|
152
154
|
# Compute the cost from the energy
|
153
|
-
quantities = ConsumptionQuantityArray(
|
154
|
-
start_date=last_date_and_value_by_sensor[energy_sensor_name][0],
|
155
|
-
end_date=end_date,
|
156
|
-
value_unit=QuantityUnit.KWH,
|
157
|
-
base_unit=TimeUnit.DAY,
|
158
|
-
value_array=energy_array,
|
159
|
-
)
|
160
|
-
|
161
|
-
# Compute the cost
|
162
155
|
if energy_array is not None:
|
163
156
|
pricer = Pricer(self._pricing_config)
|
164
157
|
|
158
|
+
quantities = ConsumptionQuantityArray(
|
159
|
+
start_date=last_date_and_value_by_sensor[energy_sensor_name][0],
|
160
|
+
end_date=end_date,
|
161
|
+
value_unit=QuantityUnit.KWH,
|
162
|
+
base_unit=TimeUnit.DAY,
|
163
|
+
value_array=energy_array,
|
164
|
+
)
|
165
|
+
|
165
166
|
cost_array = pricer.compute(quantities, PriceUnit.EURO)
|
166
167
|
else:
|
167
168
|
cost_array = None
|
@@ -4,12 +4,12 @@ gazpar2haws/bridge.py,sha256=VEl22xt2Szgk_FVrxSvZNxp3T5Q2JXc9ulfrunHHkmo,3685
|
|
4
4
|
gazpar2haws/config_utils.py,sha256=yT2G-naMA2Vst6bQdm1bD2oVsPTU3Q_RuukCs-dZ6Ak,2280
|
5
5
|
gazpar2haws/configuration.py,sha256=24q8FUBMS1vpqU6RYAv5Au179HbiBk1CZIEMiBGuXq0,722
|
6
6
|
gazpar2haws/date_array.py,sha256=XQ8gwTl0w97ADjs6igdMZLxtPPrDWTLQzhhzTDVjC4M,8761
|
7
|
-
gazpar2haws/gazpar.py,sha256=
|
7
|
+
gazpar2haws/gazpar.py,sha256=4jJvsGzE5r8GG_dmgtgI7BDxJtrd8jsh-6Fdi8EIy_Q,12621
|
8
8
|
gazpar2haws/haws.py,sha256=1ELdompdACNf5XkpjCN6Bdiw7stPfzar3x8OjoBmhxQ,7969
|
9
9
|
gazpar2haws/model.py,sha256=-1yhLNNcEvEtW67GMVLZ4lcXw6Lk75kWvrdjoVgjKCw,7055
|
10
10
|
gazpar2haws/pricer.py,sha256=YhMfvAKSxQhE2JGgrkNOpqQZdTWjGZ_bUtNsYA0u2fs,21932
|
11
11
|
gazpar2haws/version.py,sha256=9Iq5Jm63Ev7QquCjhDqa9_KAgHdKl9FJHynq8M6JNrY,83
|
12
|
-
gazpar2haws-0.3.
|
13
|
-
gazpar2haws-0.3.
|
14
|
-
gazpar2haws-0.3.
|
15
|
-
gazpar2haws-0.3.
|
12
|
+
gazpar2haws-0.3.0b16.dist-info/LICENSE,sha256=ajApZPyhVx8AU9wN7DXeRGhoWFqY2ylBZUa5GRhTmok,1073
|
13
|
+
gazpar2haws-0.3.0b16.dist-info/METADATA,sha256=2UBZwoMjMX_EKf0smHbFZY8BxwckgLRr_Wl4sb6y4vE,17406
|
14
|
+
gazpar2haws-0.3.0b16.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
15
|
+
gazpar2haws-0.3.0b16.dist-info/RECORD,,
|
File without changes
|
File without changes
|