simple-dwd-weatherforecast 2.1.4__py3-none-any.whl → 2.1.5__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.
- simple_dwd_weatherforecast/dwdforecast.py +6 -1
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/METADATA +2 -1
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/RECORD +10 -10
- tests/dummy_data.py +4695 -1
- tests/dummy_data_full.py +4695 -1
- tests/test_get_day_values.py +110 -56
- tests/test_get_timeframe_values.py +11 -0
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/LICENCE +0 -0
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/WHEEL +0 -0
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
24
24
|
"wwP": 3.0,
|
25
25
|
"DRR1": 0.0,
|
26
26
|
"N": 24.0,
|
27
|
+
"PEvap": None,
|
27
28
|
"VV": 12900.0,
|
28
29
|
"SunD1": 0.0,
|
29
30
|
"Rad1h": None,
|
@@ -42,6 +43,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
42
43
|
"wwP": 1.0,
|
43
44
|
"DRR1": 0.0,
|
44
45
|
"N": 28.0,
|
46
|
+
"PEvap": None,
|
45
47
|
"VV": 12200.0,
|
46
48
|
"SunD1": 0.0,
|
47
49
|
"Rad1h": None,
|
@@ -60,6 +62,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
60
62
|
"wwP": 1.0,
|
61
63
|
"DRR1": 0.0,
|
62
64
|
"N": 31.0,
|
65
|
+
"PEvap": None,
|
63
66
|
"VV": 10900.0,
|
64
67
|
"SunD1": 0.0,
|
65
68
|
"Rad1h": None,
|
@@ -78,6 +81,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
78
81
|
"wwP": 1.0,
|
79
82
|
"DRR1": 0.0,
|
80
83
|
"N": 35.0,
|
84
|
+
"PEvap": None,
|
81
85
|
"VV": 9600.0,
|
82
86
|
"SunD1": 0.0,
|
83
87
|
"Rad1h": None,
|
@@ -96,6 +100,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
96
100
|
"wwP": 2.0,
|
97
101
|
"DRR1": 0.0,
|
98
102
|
"N": 40.0,
|
103
|
+
"PEvap": None,
|
99
104
|
"VV": 8700.0,
|
100
105
|
"SunD1": 0.0,
|
101
106
|
"Rad1h": None,
|
@@ -114,6 +119,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
114
119
|
"wwP": 2.0,
|
115
120
|
"DRR1": 0.0,
|
116
121
|
"N": 41.0,
|
122
|
+
"PEvap": 0.4,
|
117
123
|
"VV": 8000.0,
|
118
124
|
"SunD1": 0.0,
|
119
125
|
"Rad1h": None,
|
@@ -142,6 +148,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
142
148
|
"wwP": 1.0,
|
143
149
|
"DRR1": 0.0,
|
144
150
|
"N": 31.0,
|
151
|
+
"PEvap": None,
|
145
152
|
"VV": 10900.0,
|
146
153
|
"SunD1": 0.0,
|
147
154
|
"Rad1h": None,
|
@@ -160,6 +167,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
160
167
|
"wwP": 1.0,
|
161
168
|
"DRR1": 0.0,
|
162
169
|
"N": 35.0,
|
170
|
+
"PEvap": None,
|
163
171
|
"VV": 9600.0,
|
164
172
|
"SunD1": 0.0,
|
165
173
|
"Rad1h": None,
|
@@ -178,6 +186,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
178
186
|
"wwP": 2.0,
|
179
187
|
"DRR1": 0.0,
|
180
188
|
"N": 40.0,
|
189
|
+
"PEvap": None,
|
181
190
|
"VV": 8700.0,
|
182
191
|
"SunD1": 0.0,
|
183
192
|
"Rad1h": None,
|
@@ -215,6 +224,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
215
224
|
"wwP": 2.0,
|
216
225
|
"DRR1": 0.0,
|
217
226
|
"N": 35.0,
|
227
|
+
"PEvap": None,
|
218
228
|
"VV": 8000.0,
|
219
229
|
"SunD1": 0.0,
|
220
230
|
"Rad1h": None,
|
@@ -233,6 +243,7 @@ class Weather_get_timeframe_values(unittest.TestCase):
|
|
233
243
|
"wwP": 3.0,
|
234
244
|
"DRR1": 0.0,
|
235
245
|
"N": 36.0,
|
246
|
+
"PEvap": None,
|
236
247
|
"VV": 6400.0,
|
237
248
|
"SunD1": 0.0,
|
238
249
|
"Rad1h": None,
|
{simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/LICENCE
RENAMED
File without changes
|
{simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|