power-grid-model-io 1.2.59__py3-none-any.whl → 1.2.61__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.
Potentially problematic release.
This version of power-grid-model-io might be problematic. Click here for more details.
- power_grid_model_io/__init__.py +1 -1
- power_grid_model_io/config/__init__.py +1 -1
- power_grid_model_io/config/examples/__init__.py +1 -1
- power_grid_model_io/config/examples/multipliers.yaml +1 -1
- power_grid_model_io/config/excel/__init__.py +1 -1
- power_grid_model_io/config/excel/vision_en.yaml +1 -1
- power_grid_model_io/config/excel/vision_nl.yaml +1 -1
- power_grid_model_io/converters/__init__.py +1 -1
- power_grid_model_io/converters/base_converter.py +30 -3
- power_grid_model_io/converters/pandapower_converter.py +1 -1
- power_grid_model_io/converters/pgm_json_converter.py +1 -1
- power_grid_model_io/converters/tabular_converter.py +1 -1
- power_grid_model_io/converters/vision_excel_converter.py +1 -1
- power_grid_model_io/data_stores/__init__.py +1 -1
- power_grid_model_io/data_stores/base_data_store.py +1 -1
- power_grid_model_io/data_stores/csv_dir_store.py +1 -1
- power_grid_model_io/data_stores/excel_file_store.py +1 -1
- power_grid_model_io/data_stores/json_file_store.py +1 -1
- power_grid_model_io/data_stores/vision_excel_file_store.py +1 -1
- power_grid_model_io/data_types/__init__.py +1 -1
- power_grid_model_io/data_types/_data_types.py +1 -1
- power_grid_model_io/data_types/tabular_data.py +1 -1
- power_grid_model_io/functions/__init__.py +1 -1
- power_grid_model_io/functions/_functions.py +1 -1
- power_grid_model_io/functions/phase_to_phase.py +1 -1
- power_grid_model_io/mappings/__init__.py +1 -1
- power_grid_model_io/mappings/field_mapping.py +1 -1
- power_grid_model_io/mappings/multiplier_mapping.py +1 -1
- power_grid_model_io/mappings/tabular_mapping.py +1 -1
- power_grid_model_io/mappings/unit_mapping.py +1 -1
- power_grid_model_io/mappings/value_mapping.py +1 -1
- power_grid_model_io/utils/__init__.py +1 -1
- power_grid_model_io/utils/auto_id.py +1 -1
- power_grid_model_io/utils/dict.py +1 -1
- power_grid_model_io/utils/download.py +1 -1
- power_grid_model_io/utils/json.py +1 -1
- power_grid_model_io/utils/modules.py +1 -1
- power_grid_model_io/utils/parsing.py +1 -1
- power_grid_model_io/utils/zip.py +1 -1
- {power_grid_model_io-1.2.59.dist-info → power_grid_model_io-1.2.61.dist-info}/METADATA +3 -3
- power_grid_model_io-1.2.61.dist-info/RECORD +44 -0
- power_grid_model_io-1.2.59.dist-info/RECORD +0 -44
- {power_grid_model_io-1.2.59.dist-info → power_grid_model_io-1.2.61.dist-info}/LICENSE +0 -0
- {power_grid_model_io-1.2.59.dist-info → power_grid_model_io-1.2.61.dist-info}/WHEEL +0 -0
- {power_grid_model_io-1.2.59.dist-info → power_grid_model_io-1.2.61.dist-info}/top_level.txt +0 -0
power_grid_model_io/__init__.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText:
|
|
1
|
+
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
|
2
2
|
#
|
|
3
3
|
# SPDX-License-Identifier: MPL-2.0
|
|
4
4
|
"""
|
|
5
5
|
Abstract converter class
|
|
6
6
|
"""
|
|
7
|
+
import logging
|
|
7
8
|
from abc import ABC, abstractmethod
|
|
8
9
|
from typing import Generic, Optional, Tuple, TypeVar
|
|
9
10
|
|
|
@@ -20,11 +21,18 @@ T = TypeVar("T")
|
|
|
20
21
|
class BaseConverter(Generic[T], ABC):
|
|
21
22
|
"""Abstract converter class"""
|
|
22
23
|
|
|
23
|
-
def __init__(
|
|
24
|
+
def __init__(
|
|
25
|
+
self,
|
|
26
|
+
source: Optional[BaseDataStore[T]] = None,
|
|
27
|
+
destination: Optional[BaseDataStore[T]] = None,
|
|
28
|
+
log_level: int = logging.DEBUG,
|
|
29
|
+
):
|
|
24
30
|
"""
|
|
25
31
|
Initialize a logger
|
|
26
32
|
"""
|
|
27
|
-
self.
|
|
33
|
+
self._logger = logging.getLogger(type(self).__name__)
|
|
34
|
+
self._logger.setLevel(log_level)
|
|
35
|
+
self._log = structlog.wrap_logger(self._logger, wrapper_class=structlog.make_filtering_bound_logger(log_level))
|
|
28
36
|
self._source = source
|
|
29
37
|
self._destination = destination
|
|
30
38
|
self._auto_id = AutoID()
|
|
@@ -146,6 +154,25 @@ class BaseConverter(Generic[T], ABC):
|
|
|
146
154
|
else:
|
|
147
155
|
raise ValueError("No destination supplied!")
|
|
148
156
|
|
|
157
|
+
def set_log_level(self, log_level: int) -> None:
|
|
158
|
+
"""
|
|
159
|
+
Set the log level
|
|
160
|
+
|
|
161
|
+
Args:
|
|
162
|
+
log_level: int:
|
|
163
|
+
"""
|
|
164
|
+
self._logger.setLevel(log_level)
|
|
165
|
+
self._log = structlog.wrap_logger(self._logger, wrapper_class=structlog.make_filtering_bound_logger(log_level))
|
|
166
|
+
|
|
167
|
+
def get_log_level(self) -> int:
|
|
168
|
+
"""
|
|
169
|
+
Get the log level
|
|
170
|
+
|
|
171
|
+
Returns:
|
|
172
|
+
int:
|
|
173
|
+
"""
|
|
174
|
+
return self._logger.getEffectiveLevel()
|
|
175
|
+
|
|
149
176
|
def _load_data(self, data: Optional[T]) -> T:
|
|
150
177
|
if data is not None:
|
|
151
178
|
return data
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText:
|
|
1
|
+
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
|
2
2
|
#
|
|
3
3
|
# SPDX-License-Identifier: MPL-2.0
|
|
4
4
|
# pylint: disable = too-many-lines
|
power_grid_model_io/utils/zip.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: power-grid-model-io
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.61
|
|
4
4
|
Summary: Power Grid Model Input/Output
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
|
6
6
|
License: MPL-2.0
|
|
7
7
|
Project-URL: Home-page, https://lfenergy.org/projects/power-grid-model/
|
|
8
8
|
Project-URL: GitHub, https://github.com/PowerGridModel/power-grid-model-io
|
|
@@ -47,7 +47,7 @@ Requires-Dist: pandapower >2.11.1 ; extra == 'examples'
|
|
|
47
47
|
Requires-Dist: pyarrow ; extra == 'examples'
|
|
48
48
|
|
|
49
49
|
<!--
|
|
50
|
-
SPDX-FileCopyrightText:
|
|
50
|
+
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
|
51
51
|
|
|
52
52
|
SPDX-License-Identifier: MPL-2.0
|
|
53
53
|
-->
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
power_grid_model_io/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
|
|
2
|
+
power_grid_model_io/config/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
|
|
3
|
+
power_grid_model_io/config/examples/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
|
|
4
|
+
power_grid_model_io/config/examples/multipliers.yaml,sha256=UjsxWmxqLrTLGE0GI--9fKDqTkn3jY8n5KSYlwzh2o4,227
|
|
5
|
+
power_grid_model_io/config/excel/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
|
|
6
|
+
power_grid_model_io/config/excel/vision_en.yaml,sha256=a6BtSeMzGumsUSoDqzZHyx2cpv0P0X32c9FrsD1Y_nE,19018
|
|
7
|
+
power_grid_model_io/config/excel/vision_nl.yaml,sha256=ps-vKUvYcIev7fxx5rIQqHe1ukP_WjHZvqF3AcLswd8,19226
|
|
8
|
+
power_grid_model_io/converters/__init__.py,sha256=kmbjFW6kVr30fmHb6mAoD7DQAqmbrsOuF1ewd8b0Q3M,408
|
|
9
|
+
power_grid_model_io/converters/base_converter.py,sha256=LNrDo1kUUuBkLMgZpGm0MW5rfr8nLoFcGCJGRR7ZuiY,6044
|
|
10
|
+
power_grid_model_io/converters/pandapower_converter.py,sha256=05iNHqqVFphXRNsNE7aumkZGybY_-FOj1S8S1UhQo64,113429
|
|
11
|
+
power_grid_model_io/converters/pgm_json_converter.py,sha256=KKZEBLVW1hsS2YjOsUO6EBrXhvwPVl9VhkUNEw-3gWk,13066
|
|
12
|
+
power_grid_model_io/converters/tabular_converter.py,sha256=hMb0pmnlq83GJEfOqr3K7XXsSiA_SYyQKHW1i6F5FSY,30577
|
|
13
|
+
power_grid_model_io/converters/vision_excel_converter.py,sha256=aT_e_XSX4jQ3V-KlNxF5VGvWoM8uxOLpbL6qZCDmgAg,3636
|
|
14
|
+
power_grid_model_io/data_stores/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
|
|
15
|
+
power_grid_model_io/data_stores/base_data_store.py,sha256=XKdQY6Thrt_o7vtMXvTJFl1TCwBkSZVcImhbHXz23ls,1367
|
|
16
|
+
power_grid_model_io/data_stores/csv_dir_store.py,sha256=H8ICXZRLDvp9OkbjkfHnoh4y7uNSXNepHAW6W53VsIw,1877
|
|
17
|
+
power_grid_model_io/data_stores/excel_file_store.py,sha256=Pxgp_3OHLljHRnWdLtX1Ma3m7erl81v0TO8P5A1guWg,8615
|
|
18
|
+
power_grid_model_io/data_stores/json_file_store.py,sha256=0njL2YZn_fImNcZqnIRpHp2UtIS6WGaQQ46TjIK8tyo,3954
|
|
19
|
+
power_grid_model_io/data_stores/vision_excel_file_store.py,sha256=zU-zGktLmU7a808KwppiMc2YeCPfqjo03lRW0neEuQ4,805
|
|
20
|
+
power_grid_model_io/data_types/__init__.py,sha256=63A_PkOsQkVd3To7Kl4FTUX7lbPG9BS9MSLzXTW6Ktk,383
|
|
21
|
+
power_grid_model_io/data_types/_data_types.py,sha256=9xH5vBGrRVUSlPh4HXmORtKo3LFEhJEy3iTQqG7wsFA,1664
|
|
22
|
+
power_grid_model_io/data_types/tabular_data.py,sha256=JaJRWaOlVTqb7nMXoRUovUtiqnFyDPC_wFbO7O5lT7s,8341
|
|
23
|
+
power_grid_model_io/functions/__init__.py,sha256=pamhvKX5c_5fkVMRrUp6zhHWex2R63otRJk1Sfsw6y0,495
|
|
24
|
+
power_grid_model_io/functions/_functions.py,sha256=tqwwZ0G8AeDza0IiS6CSMwKB0lV1hDo2D8e9-ARHXQM,2843
|
|
25
|
+
power_grid_model_io/functions/phase_to_phase.py,sha256=zbaDXIj8S4cLO42LjkpcQoUrEW1frzBUj1OmKu-xkTg,4459
|
|
26
|
+
power_grid_model_io/mappings/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
|
|
27
|
+
power_grid_model_io/mappings/field_mapping.py,sha256=SUkfgUHZ79csTd4yE2Jvwg3Vg8ZML8CZasJANb_qO0I,1565
|
|
28
|
+
power_grid_model_io/mappings/multiplier_mapping.py,sha256=1vJ4veABNHaZh1BOHRb2rSgNrwup5Zk2mwDbA1uSfoU,882
|
|
29
|
+
power_grid_model_io/mappings/tabular_mapping.py,sha256=jcj7h95b3pEaqOxZD_GOAfJ4JAkzVNfoqUfSv24zM9w,1736
|
|
30
|
+
power_grid_model_io/mappings/unit_mapping.py,sha256=wiQ_4R3kQL4AiC10KSayq0lKwrIRFDyfKcBhSs1F-eA,2839
|
|
31
|
+
power_grid_model_io/mappings/value_mapping.py,sha256=PqWqPesUz1pKOK1eg5tgOKWy7c__jCi5BIsyHYSpHhY,1073
|
|
32
|
+
power_grid_model_io/utils/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
|
|
33
|
+
power_grid_model_io/utils/auto_id.py,sha256=60V15L5sFLnEFrWWHYevQHRb5cJZF8-HXIzachJGyY8,4095
|
|
34
|
+
power_grid_model_io/utils/dict.py,sha256=CDZM8iMWpLqfzxiyZZnvIUdWihwuczJQKHpfEGFsf2s,1014
|
|
35
|
+
power_grid_model_io/utils/download.py,sha256=enEoj42ByC5j5rj_iZ1Y9we7t8Nmlwre0-9Njon-Tqg,9457
|
|
36
|
+
power_grid_model_io/utils/json.py,sha256=dQDRd2Vb8pfqLU2hTuWYv2cpSIBBbFhd0LOBP21YxJI,3327
|
|
37
|
+
power_grid_model_io/utils/modules.py,sha256=a4IdozSL-sOZcmIQON_aQS7-cpnCyt-3p7zs40wRFkU,928
|
|
38
|
+
power_grid_model_io/utils/parsing.py,sha256=XB1QSHnslIieFJBKFXZCtiydqpOqQBiX_CXDbItXgAQ,4522
|
|
39
|
+
power_grid_model_io/utils/zip.py,sha256=VXHX4xWPPZbhOlZUAbMDy3MgQFzK6_l7sRvGXihNUY4,3875
|
|
40
|
+
power_grid_model_io-1.2.61.dist-info/LICENSE,sha256=7Pm2fWFFHHUG5lDHed1vl5CjzxObIXQglnYsEdtjo_k,14907
|
|
41
|
+
power_grid_model_io-1.2.61.dist-info/METADATA,sha256=3fcWtMKfN3r8A6_XCKkywvGvkk2Q99bnWPoWtgpvgtc,8000
|
|
42
|
+
power_grid_model_io-1.2.61.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
43
|
+
power_grid_model_io-1.2.61.dist-info/top_level.txt,sha256=7sq9VveemMm2R0RgTBa4tH8y_xF4_1hxbufmX9OjCTo,20
|
|
44
|
+
power_grid_model_io-1.2.61.dist-info/RECORD,,
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
power_grid_model_io/__init__.py,sha256=4RCCaYmi3VSdnAYw3RGxH73K3Jez5VUymiWg-zXqj_c,154
|
|
2
|
-
power_grid_model_io/config/__init__.py,sha256=4RCCaYmi3VSdnAYw3RGxH73K3Jez5VUymiWg-zXqj_c,154
|
|
3
|
-
power_grid_model_io/config/examples/__init__.py,sha256=4RCCaYmi3VSdnAYw3RGxH73K3Jez5VUymiWg-zXqj_c,154
|
|
4
|
-
power_grid_model_io/config/examples/multipliers.yaml,sha256=SMoDvxTsIiav43N8YYdpGyyg1e8xKTnFhUy-ahBzisE,243
|
|
5
|
-
power_grid_model_io/config/excel/__init__.py,sha256=4RCCaYmi3VSdnAYw3RGxH73K3Jez5VUymiWg-zXqj_c,154
|
|
6
|
-
power_grid_model_io/config/excel/vision_en.yaml,sha256=jMX2ouavWB9SP2k-2bAF5yfLyQy5qjePSmHqy4ojSq4,19034
|
|
7
|
-
power_grid_model_io/config/excel/vision_nl.yaml,sha256=9C1h6TXc3XQLXbhzE55Yd1Yn2jRTiMUeOl7sXlXWD1o,19242
|
|
8
|
-
power_grid_model_io/converters/__init__.py,sha256=WKvQi375_pb1I4x36aTUvRjAqXHNNlbg2yX8P0fvvsA,424
|
|
9
|
-
power_grid_model_io/converters/base_converter.py,sha256=XTa-v0YG-VWTEFeYkDsiuP2wCsTTLGrGOJa3Ib43B1w,5339
|
|
10
|
-
power_grid_model_io/converters/pandapower_converter.py,sha256=noMmK8gvfdwbe_jC4ij6LHShK6OtnjX0EtR9x0MJrEs,113445
|
|
11
|
-
power_grid_model_io/converters/pgm_json_converter.py,sha256=41uiyvyXhzfq4zka8RJHI9z13BoooTFhyiWyJxaJs38,13082
|
|
12
|
-
power_grid_model_io/converters/tabular_converter.py,sha256=vOXSEpeBFVqCL6rChn6aTGxqa0rlwOE8kA8x-SLBRCo,30593
|
|
13
|
-
power_grid_model_io/converters/vision_excel_converter.py,sha256=snLsh0ra4sOp031I5jdIfi15Ndxt8HSezXNIoTWBAAs,3652
|
|
14
|
-
power_grid_model_io/data_stores/__init__.py,sha256=4RCCaYmi3VSdnAYw3RGxH73K3Jez5VUymiWg-zXqj_c,154
|
|
15
|
-
power_grid_model_io/data_stores/base_data_store.py,sha256=NQsw-g8HerFb7t3O4yuvFGirb8z_Zcq9J0ViKcJK1U0,1383
|
|
16
|
-
power_grid_model_io/data_stores/csv_dir_store.py,sha256=jfZ1YIQRBYEdj1i5E8z4xeDaz89Fb-eoVw5hrROqxJw,1896
|
|
17
|
-
power_grid_model_io/data_stores/excel_file_store.py,sha256=qSeYjYqrr7BTkV8ouEYwwVPEcIigkCcRnqWHCmL5CbI,8631
|
|
18
|
-
power_grid_model_io/data_stores/json_file_store.py,sha256=vmo25AiCIy16HDF8S5ZZKurP6TuljRZDBAGNwSGm1sU,3970
|
|
19
|
-
power_grid_model_io/data_stores/vision_excel_file_store.py,sha256=d5J6ClvIpef_JwKcqCilzYU411IR8Zju6R9Dc4j0KXQ,821
|
|
20
|
-
power_grid_model_io/data_types/__init__.py,sha256=s5GL9Q3P1Y2tU2S5ekQ2KbS3TetIvW1414xbZ1Zia3s,399
|
|
21
|
-
power_grid_model_io/data_types/_data_types.py,sha256=BnqY6vbiivmvh_fLYY6enj3xRluL674xLScF0ATEGPs,1680
|
|
22
|
-
power_grid_model_io/data_types/tabular_data.py,sha256=2ZdrNGEeUaZURDo61exdzSwST_fl7dTbk4xcGv7xB1g,8357
|
|
23
|
-
power_grid_model_io/functions/__init__.py,sha256=LQKpnYqnZhMHb9QwWTTGiMadwl3e6jMSEzJf6TlIZk0,511
|
|
24
|
-
power_grid_model_io/functions/_functions.py,sha256=BNFvNaVuXRBWyHgkTuoxm_UPqx55ZufMtq54SAz04K0,2859
|
|
25
|
-
power_grid_model_io/functions/phase_to_phase.py,sha256=wmPk4aUG0D2RgKcOqdGpP6IetJzXMWk7VAZW6mUvugQ,4475
|
|
26
|
-
power_grid_model_io/mappings/__init__.py,sha256=4RCCaYmi3VSdnAYw3RGxH73K3Jez5VUymiWg-zXqj_c,154
|
|
27
|
-
power_grid_model_io/mappings/field_mapping.py,sha256=Ho70tft8nXdUPiRpLusQIle-D_XZan7s-Sa27FQo3Uo,1581
|
|
28
|
-
power_grid_model_io/mappings/multiplier_mapping.py,sha256=c_2AfAInuq-BHZ5epgTumUGNymQTp7C7McsuxCjRHRg,898
|
|
29
|
-
power_grid_model_io/mappings/tabular_mapping.py,sha256=e0PH3eWxPV86t8SLq7hDYOc08plkYIMWsDKXXtASaN0,1752
|
|
30
|
-
power_grid_model_io/mappings/unit_mapping.py,sha256=BGe_QSdg-F-d80pcqbvjYlpXCd2In8MnoyFFEHwOdyo,2855
|
|
31
|
-
power_grid_model_io/mappings/value_mapping.py,sha256=9MlM2_m6X7adYVEgDFlT14Lk5dOSCgXWqUWE30beubY,1089
|
|
32
|
-
power_grid_model_io/utils/__init__.py,sha256=4RCCaYmi3VSdnAYw3RGxH73K3Jez5VUymiWg-zXqj_c,154
|
|
33
|
-
power_grid_model_io/utils/auto_id.py,sha256=fk-w1rnuvFbg8_hnteZSNa0j8p5xIF-bFDlQ9GxiHXA,4111
|
|
34
|
-
power_grid_model_io/utils/dict.py,sha256=Y5fCB22qIwFVHinUq-TO1eXeNWU177sVPyOVVaAzl7o,1030
|
|
35
|
-
power_grid_model_io/utils/download.py,sha256=acsQBcLBfUb0UE6lzzvywrctOQYQYtyIbD6gHG3X5yY,9473
|
|
36
|
-
power_grid_model_io/utils/json.py,sha256=Fw9GhCiwk4sXw48ljPOkWAR0LaRkdA8ZkUQu-K0z0vU,3343
|
|
37
|
-
power_grid_model_io/utils/modules.py,sha256=ZB8IIK96VuJk5FkoclrUCuXOSsGeVqT3B01bBAcodeU,944
|
|
38
|
-
power_grid_model_io/utils/parsing.py,sha256=PYK1I09-IaZ7_Xcs6O4Iu4koEo-EgfM9n1bm9cmh23g,4538
|
|
39
|
-
power_grid_model_io/utils/zip.py,sha256=FSaDqhR2G3OTTH8ZOIiI8tchur9CDJ0GewGr7ZDUeEw,3891
|
|
40
|
-
power_grid_model_io-1.2.59.dist-info/LICENSE,sha256=7Pm2fWFFHHUG5lDHed1vl5CjzxObIXQglnYsEdtjo_k,14907
|
|
41
|
-
power_grid_model_io-1.2.59.dist-info/METADATA,sha256=vl7nmFaoUfB0sNLXSA6fnBvCWJRPA8wQwJ2tMwrPQL0,8017
|
|
42
|
-
power_grid_model_io-1.2.59.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
43
|
-
power_grid_model_io-1.2.59.dist-info/top_level.txt,sha256=7sq9VveemMm2R0RgTBa4tH8y_xF4_1hxbufmX9OjCTo,20
|
|
44
|
-
power_grid_model_io-1.2.59.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|