pyedb 0.37.0__py3-none-any.whl → 0.38.0__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 pyedb might be problematic. Click here for more details.
- pyedb/__init__.py +1 -1
- pyedb/configuration/cfg_common.py +1 -1
- pyedb/configuration/cfg_components.py +228 -200
- pyedb/configuration/cfg_data.py +3 -1
- pyedb/configuration/cfg_modeler.py +6 -6
- pyedb/configuration/cfg_padstacks.py +345 -289
- pyedb/configuration/cfg_ports_sources.py +191 -46
- pyedb/configuration/configuration.py +5 -2
- pyedb/dotnet/edb.py +1 -1
- pyedb/dotnet/edb_core/cell/layout.py +2 -2
- pyedb/dotnet/edb_core/edb_data/padstacks_data.py +45 -58
- pyedb/dotnet/edb_core/padstack.py +2 -1
- pyedb/dotnet/edb_core/sim_setup_data/data/settings.py +15 -0
- pyedb/dotnet/edb_core/sim_setup_data/data/sweep_data.py +3 -3
- pyedb/dotnet/edb_core/utilities/simulation_setup.py +1 -0
- pyedb/extensions/pre_layout_design_toolkit/via_design.py +1151 -0
- pyedb/ipc2581/ecad/cad_data/step.py +1 -1
- {pyedb-0.37.0.dist-info → pyedb-0.38.0.dist-info}/METADATA +5 -5
- {pyedb-0.37.0.dist-info → pyedb-0.38.0.dist-info}/RECORD +21 -20
- {pyedb-0.37.0.dist-info → pyedb-0.38.0.dist-info}/LICENSE +0 -0
- {pyedb-0.37.0.dist-info → pyedb-0.38.0.dist-info}/WHEEL +0 -0
|
@@ -246,7 +246,7 @@ class Step(object):
|
|
|
246
246
|
self._ipc.ecad.cad_data.cad_data_step.layer_features.append(layer_feature)
|
|
247
247
|
layers[layer_name] = self._ipc.ecad.cad_data.cad_data_step.layer_features[-1]
|
|
248
248
|
pdef_name = (
|
|
249
|
-
padstack_instance._pdef if padstack_instance._pdef else padstack_instance.padstack_definition
|
|
249
|
+
padstack_instance._pdef.name if padstack_instance._pdef else padstack_instance.padstack_definition
|
|
250
250
|
)
|
|
251
251
|
if pdef_name in padstack_defs:
|
|
252
252
|
padstack_def = padstack_defs[pdef_name]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.38.0
|
|
4
4
|
Summary: Higher-Level Pythonic Ansys Electronics Data Base
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
6
6
|
Maintainer-email: PyEDB developers <simon.vandenbrouck@ansys.com>
|
|
@@ -30,11 +30,11 @@ Requires-Dist: imageio>=2.30.0,<2.37 ; extra == "doc"
|
|
|
30
30
|
Requires-Dist: ipython>=8.13.0,<8.32 ; extra == "doc"
|
|
31
31
|
Requires-Dist: jupyterlab>=4.0.0,<4.4 ; extra == "doc"
|
|
32
32
|
Requires-Dist: jupytext>=1.16.0,<1.17 ; extra == "doc"
|
|
33
|
-
Requires-Dist: matplotlib>=3.5.0,<3.
|
|
33
|
+
Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "doc"
|
|
34
34
|
Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
|
|
35
35
|
Requires-Dist: nbconvert < 7.17 ; extra == "doc"
|
|
36
36
|
Requires-Dist: numpydoc>=1.5.0,<1.9 ; extra == "doc"
|
|
37
|
-
Requires-Dist: pypandoc>=1.10.0,<1.
|
|
37
|
+
Requires-Dist: pypandoc>=1.10.0,<1.16 ; extra == "doc"
|
|
38
38
|
Requires-Dist: recommonmark ; extra == "doc"
|
|
39
39
|
Requires-Dist: Sphinx>=7.1.0,<8.2 ; extra == "doc"
|
|
40
40
|
Requires-Dist: sphinx-autobuild==2021.3.14 ; extra == "doc" and ( python_version == '3.8')
|
|
@@ -43,9 +43,9 @@ Requires-Dist: sphinx-copybutton>=0.5.0,<0.6 ; extra == "doc"
|
|
|
43
43
|
Requires-Dist: sphinx-gallery>=0.14.0,<0.19 ; extra == "doc"
|
|
44
44
|
Requires-Dist: sphinx_design>=0.4.0,<0.7 ; extra == "doc"
|
|
45
45
|
Requires-Dist: shapely ; extra == "doc"
|
|
46
|
-
Requires-Dist: matplotlib>=3.5.0,<3.
|
|
46
|
+
Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "full"
|
|
47
47
|
Requires-Dist: shapely ; extra == "full"
|
|
48
|
-
Requires-Dist: matplotlib>=3.5.0,<3.
|
|
48
|
+
Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "tests"
|
|
49
49
|
Requires-Dist: mock>=5.1.0,<5.2 ; extra == "tests"
|
|
50
50
|
Requires-Dist: pytest>=7.4.0,<8.4 ; extra == "tests"
|
|
51
51
|
Requires-Dist: pytest-cov>=4.0.0,<6.1 ; extra == "tests"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=5-bhGTnufsda0Bw9J9BfA6oO8vvjPLWQjGojcCF8DxU,1525
|
|
2
2
|
pyedb/edb_logger.py,sha256=7KXPvAMCKzlzJ5zioiNO5A3zkqbpCHhWHB4aXKfgu5Y,14959
|
|
3
3
|
pyedb/exceptions.py,sha256=n94xluzUks6BA24vd_L6HkrvoP_H_l6__hQmqzdCyPo,111
|
|
4
4
|
pyedb/siwave.py,sha256=Mgg5ZGzOUOtNdlePHcnrgN3rletQ7jrqRi3WfxF58uU,17727
|
|
@@ -8,25 +8,25 @@ pyedb/common/nets.py,sha256=eOJn_WBbyjZWT-sDWrUOvO4ZQyh_6OK9DtoTb8Dp3Hs,20600
|
|
|
8
8
|
pyedb/component_libraries/ansys_components.py,sha256=O3ypt832IHY9zG2AD_yrRrbH2KH9P1yFaoi1EO6Zllw,4830
|
|
9
9
|
pyedb/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
pyedb/configuration/cfg_boundaries.py,sha256=5_v6HD0VgkFCJHgx5zTIn_nxPv3KpcCuGz9P4Kk4ywM,6246
|
|
11
|
-
pyedb/configuration/cfg_common.py,sha256=
|
|
12
|
-
pyedb/configuration/cfg_components.py,sha256=
|
|
13
|
-
pyedb/configuration/cfg_data.py,sha256=
|
|
11
|
+
pyedb/configuration/cfg_common.py,sha256=U45p2qksEwMY_woVFaSwn5qjib9QQJDShajZZ-IZV0Y,2575
|
|
12
|
+
pyedb/configuration/cfg_components.py,sha256=B7bsaK-kU9tJUK1BknxRZHq87yC7dUvVwxehKc4O6wU,14179
|
|
13
|
+
pyedb/configuration/cfg_data.py,sha256=sy1xUrfhRA3jorbR60qGExaMxQ1nQGGAbZYJ0xXYktE,3860
|
|
14
14
|
pyedb/configuration/cfg_general.py,sha256=DJAKTW8Sqojfqzc3jO3MU1-J8MrmVi37jUIkTD_Tw6o,2068
|
|
15
|
-
pyedb/configuration/cfg_modeler.py,sha256=
|
|
15
|
+
pyedb/configuration/cfg_modeler.py,sha256=S8L10zORYGzHBHpuRSFqC-BSabNa4kXapQsYKQM1364,5939
|
|
16
16
|
pyedb/configuration/cfg_nets.py,sha256=18NezeNh0ZOwk2ehz3zWJF_xYR7IYCqGlpDfDt7Ilho,2349
|
|
17
17
|
pyedb/configuration/cfg_operations.py,sha256=CFLBdM2kQBsW6f7W0NHWbV56RDMHSnaNQl3BmqDWQWo,4707
|
|
18
18
|
pyedb/configuration/cfg_package_definition.py,sha256=f_RRT9R-3H5kHBlc4QSpjq9uQgYbaKQ78XXXrc_r3kg,5296
|
|
19
|
-
pyedb/configuration/cfg_padstacks.py,sha256=
|
|
19
|
+
pyedb/configuration/cfg_padstacks.py,sha256=zZ-Y9gWxHMjVkUD67hP8D_vCjsp83gfL26iP0sKyozQ,20779
|
|
20
20
|
pyedb/configuration/cfg_pin_groups.py,sha256=zNKfVP-fd1qUxS2wNb0ZTLGonkUnBmiXb4Rss1Rr7sE,3714
|
|
21
|
-
pyedb/configuration/cfg_ports_sources.py,sha256=
|
|
21
|
+
pyedb/configuration/cfg_ports_sources.py,sha256=iwpypif-s9FFSsZXXd1CXHocWBhw1uS9Eks576vxYAo,29330
|
|
22
22
|
pyedb/configuration/cfg_s_parameter_models.py,sha256=DgBprcEYR2r_3BY4f_CuwuhJw_QFEag3xaAlLTRfMuE,5356
|
|
23
23
|
pyedb/configuration/cfg_setup.py,sha256=QGKQHAEeo196TYtKMvIMb2-p8KC4U8fmHx0yn0SpgMo,10351
|
|
24
24
|
pyedb/configuration/cfg_spice_models.py,sha256=Q_5j2-V6cepSFcnijot8iypTqzanLp7HOz-agmnwKns,2570
|
|
25
25
|
pyedb/configuration/cfg_stackup.py,sha256=Ie2mdHfCgPn3F7BSdLlYZoZ3exhCDgPrhlYwxHZ6ABU,6484
|
|
26
|
-
pyedb/configuration/configuration.py,sha256=
|
|
26
|
+
pyedb/configuration/configuration.py,sha256=QAimEFqs2Nk0t3gjwzgjtI8Y_12HjY0Pa4B0oPjCTgM,15708
|
|
27
27
|
pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
pyedb/dotnet/clr_module.py,sha256=EabqZgZgBZOhJD9_V8Ll8sEKgBFj9xe9zARNYIvYM_s,5304
|
|
29
|
-
pyedb/dotnet/edb.py,sha256=
|
|
29
|
+
pyedb/dotnet/edb.py,sha256=ei-yzaa3Ok-QpbXSDzu2veCtMZwFjrOWGPVfnJgPwsg,186689
|
|
30
30
|
pyedb/dotnet/application/Variables.py,sha256=awNhyiLASBYrNjWIyW8IJowgqt7FfFPKF9UElRWyjZg,77750
|
|
31
31
|
pyedb/dotnet/application/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
pyedb/dotnet/edb_core/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
@@ -39,12 +39,12 @@ pyedb/dotnet/edb_core/materials.py,sha256=s105DUTFkQoQRWgtRMp02DKcU2YcSrfLbJoi8h
|
|
|
39
39
|
pyedb/dotnet/edb_core/modeler.py,sha256=XKlKzgTRtFll5ZZlhC4JEfKkO5AZvooAtgbV49VYbZc,55494
|
|
40
40
|
pyedb/dotnet/edb_core/net_class.py,sha256=4U6Cc1Gn7ZJ_ub9uKmtrsoz5wD1XS42afci3Y3ewRp0,11354
|
|
41
41
|
pyedb/dotnet/edb_core/nets.py,sha256=Wc84urZG6nM3fZYqMj2HzM6CgNz_B4s4O3WmMGr-5H0,25199
|
|
42
|
-
pyedb/dotnet/edb_core/padstack.py,sha256=
|
|
42
|
+
pyedb/dotnet/edb_core/padstack.py,sha256=nc34YMO8pf_zKoNxAfbEw8T_X7QqCQT5qa5E3r5UpDg,73219
|
|
43
43
|
pyedb/dotnet/edb_core/siwave.py,sha256=QF4JyVNWoDeNQRRBBExlCxxVUt1-5DpKIlpuYkXd4k0,64286
|
|
44
44
|
pyedb/dotnet/edb_core/stackup.py,sha256=b56leXg7X7dEVPP2DUD9n8LZIakWcjIsjiqqkIWsyZU,120035
|
|
45
45
|
pyedb/dotnet/edb_core/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
46
|
pyedb/dotnet/edb_core/cell/connectable.py,sha256=gc5jhWx4DX718T7koL6oZZzfS4EdQNTiFX76ZJ2c83E,2864
|
|
47
|
-
pyedb/dotnet/edb_core/cell/layout.py,sha256=
|
|
47
|
+
pyedb/dotnet/edb_core/cell/layout.py,sha256=2GNCNMkCNZXS2gN69yfQvx0htTho2shPdphKBbgAdE4,13172
|
|
48
48
|
pyedb/dotnet/edb_core/cell/layout_obj.py,sha256=S42rdiI6gVqO77DV3ikc4YxTNufTuqW_X1G-2zkWArA,2765
|
|
49
49
|
pyedb/dotnet/edb_core/cell/voltage_regulator.py,sha256=-uAzuyERV6ca0bFRzdH4SllcpGY2D9JEdpS7RYaQt6c,5387
|
|
50
50
|
pyedb/dotnet/edb_core/cell/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -82,7 +82,7 @@ pyedb/dotnet/edb_core/edb_data/edbvalue.py,sha256=Vj_11HXsQUNavizKp5FicORm6cjhXR
|
|
|
82
82
|
pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py,sha256=wIKH4it1uYkEae4OimS3YE6QoSf8rAAIhxdTwtR9cqU,13040
|
|
83
83
|
pyedb/dotnet/edb_core/edb_data/layer_data.py,sha256=4Z_eaHSfGfwQBKETEmGSwMvwGzvirtwYw4G4TwonNiA,34314
|
|
84
84
|
pyedb/dotnet/edb_core/edb_data/nets_data.py,sha256=k15gL8A9yACRxw5UaMFZamijMLo19MR8YZbZb06tYMA,10142
|
|
85
|
-
pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=
|
|
85
|
+
pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=oDv93KI-EdqvPHuHYwBwlqzdgA3gLfH--pJ9DS4UJNM,78343
|
|
86
86
|
pyedb/dotnet/edb_core/edb_data/ports.py,sha256=wr2RQi8VExuNIVmnp7c4VpTIhODgthmJmHr01zO4ueo,8873
|
|
87
87
|
pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=kIXkd5SXeN881eJqdJ2KxEZebpimB4qFEed1g6w-Raw,16826
|
|
88
88
|
pyedb/dotnet/edb_core/edb_data/raptor_x_simulation_setup_data.py,sha256=P37-OIsc8TuTC_s3CXRmvZcJqxAftHA7SATfEyoAnMM,20953
|
|
@@ -97,19 +97,20 @@ pyedb/dotnet/edb_core/sim_setup_data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQm
|
|
|
97
97
|
pyedb/dotnet/edb_core/sim_setup_data/data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
98
98
|
pyedb/dotnet/edb_core/sim_setup_data/data/adaptive_frequency_data.py,sha256=tlHI7PUUoseNnJAtihpjb1PwXYNr-4ztAAnunlLLWVQ,2463
|
|
99
99
|
pyedb/dotnet/edb_core/sim_setup_data/data/mesh_operation.py,sha256=bWKZTMqROiXvG6T3i7EcapcQBcL0gOChDu4tksdk1xo,8073
|
|
100
|
-
pyedb/dotnet/edb_core/sim_setup_data/data/settings.py,sha256=
|
|
100
|
+
pyedb/dotnet/edb_core/sim_setup_data/data/settings.py,sha256=5InLXYDjdo1QdT5PiG6fwIXONjN7_5h_xTuoG_4xThE,28012
|
|
101
101
|
pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py,sha256=yfSIsI7G5qgTqkc7UzWvw2-phZG2kawtQAxsXMiEvOE,4479
|
|
102
102
|
pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py,sha256=9ji4UQzgTTOExgGMpCB8zgvovBjhedwqLoN1MzUHOks,10727
|
|
103
103
|
pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py,sha256=caRhPnon_jN5xXznLy57JPD5lGC7DS8KqYtXSC19nJ4,8627
|
|
104
|
-
pyedb/dotnet/edb_core/sim_setup_data/data/sweep_data.py,sha256=
|
|
104
|
+
pyedb/dotnet/edb_core/sim_setup_data/data/sweep_data.py,sha256=gijoFOO1K90PWud3yUBaCsGbBTF5hoXCi6QHItJf_7U,18116
|
|
105
105
|
pyedb/dotnet/edb_core/sim_setup_data/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
106
|
pyedb/dotnet/edb_core/sim_setup_data/io/siwave.py,sha256=92iEZrhA2CUTZ7wynL5nxVVwi2XKKqppx7AcvvoqK6E,31387
|
|
107
107
|
pyedb/dotnet/edb_core/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
108
108
|
pyedb/dotnet/edb_core/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
|
|
109
109
|
pyedb/dotnet/edb_core/utilities/hfss_simulation_setup.py,sha256=_0H_7ypwrR5kj4LFhJLRvG9PV1lemvRnxRBJuOcGeXM,14074
|
|
110
110
|
pyedb/dotnet/edb_core/utilities/obj_base.py,sha256=l2UVc2_D3R1JkRLPiqpFb_3yoxlHSw1Qd5KvHIZCDAY,2883
|
|
111
|
-
pyedb/dotnet/edb_core/utilities/simulation_setup.py,sha256=
|
|
111
|
+
pyedb/dotnet/edb_core/utilities/simulation_setup.py,sha256=KDgJuUWRwooSrzqMBWgzedW5C7w34i0Vot0PvNCkq0c,12347
|
|
112
112
|
pyedb/dotnet/edb_core/utilities/siwave_simulation_setup.py,sha256=BXuYJ7KQMgKiQnw6_Dft2aT11PYz6M7C-NJrMS8ZFX0,12764
|
|
113
|
+
pyedb/extensions/pre_layout_design_toolkit/via_design.py,sha256=b9pTM5Gi3S3O2epaSBp4cD5DEul-MP5gCvRw3E5GmpE,46734
|
|
113
114
|
pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
115
|
pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
|
|
115
116
|
pyedb/generic/data_handlers.py,sha256=rfqNe2tPCJRqhXZBCyWxRFu5SjQ92Cdzq4l0TDC4Pvw,6905
|
|
@@ -166,7 +167,7 @@ pyedb/ipc2581/ecad/cad_data/profile.py,sha256=H7f0KdCQJhR8bc7jn7rjUlLPLo0wr0x5sa
|
|
|
166
167
|
pyedb/ipc2581/ecad/cad_data/stackup.py,sha256=_CyyYwFjrVyQEpsL_4bFSz9U1sMTWhfLUov6RdhdITE,2274
|
|
167
168
|
pyedb/ipc2581/ecad/cad_data/stackup_group.py,sha256=zRtg9Va6SQn6eJOiB_8cvSptAbUa-SQbwB4e4Kr2N0Q,2717
|
|
168
169
|
pyedb/ipc2581/ecad/cad_data/stackup_layer.py,sha256=SMkX9wrHdxbVn6hcPqlAbWz14IKiVy3dg9Dj6V-dcGA,1970
|
|
169
|
-
pyedb/ipc2581/ecad/cad_data/step.py,sha256=
|
|
170
|
+
pyedb/ipc2581/ecad/cad_data/step.py,sha256=jCDdoENJy-JahXcOogU6eVkDgmBxAXXThur1KMQb2pc,12324
|
|
170
171
|
pyedb/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
172
|
pyedb/misc/aedtlib_personalib_install.py,sha256=eCVAdEoriMU92bZwPzY9Aig85cBbUO0J8J4RMtMkY_o,1759
|
|
172
173
|
pyedb/misc/downloads.py,sha256=j9jJhwGTTJwm4WWaCSEhGZzOGyOyHhBAFexx0NtD4Uw,10824
|
|
@@ -188,7 +189,7 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
|
|
|
188
189
|
pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
|
|
189
190
|
pyedb/modeler/geometry_operators.py,sha256=g_Sy7a6R23sP6RtboJn1rl8uTuo8oeLmMF21rNkzwjk,74198
|
|
190
191
|
pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
|
|
191
|
-
pyedb-0.
|
|
192
|
-
pyedb-0.
|
|
193
|
-
pyedb-0.
|
|
194
|
-
pyedb-0.
|
|
192
|
+
pyedb-0.38.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
193
|
+
pyedb-0.38.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
194
|
+
pyedb-0.38.0.dist-info/METADATA,sha256=hkNMo8CcDap0QNB48mVCSLKByvG4UgH2yrIiX4vSx4w,8513
|
|
195
|
+
pyedb-0.38.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|