pyedb 0.49.0__py3-none-any.whl → 0.50.1__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_modeler.py +42 -11
- pyedb/configuration/cfg_ports_sources.py +9 -1
- pyedb/dotnet/database/cell/hierarchy/component.py +6 -6
- pyedb/dotnet/database/components.py +3 -3
- pyedb/dotnet/database/edb_data/padstacks_data.py +13 -0
- pyedb/dotnet/database/edb_data/primitives_data.py +3 -3
- pyedb/dotnet/database/edb_data/variables.py +3 -3
- pyedb/dotnet/database/materials.py +16 -16
- pyedb/dotnet/database/modeler.py +38 -4
- pyedb/dotnet/database/sim_setup_data/data/settings.py +28 -0
- pyedb/dotnet/database/stackup.py +1 -0
- pyedb/dotnet/database/utilities/hfss_simulation_setup.py +5 -6
- pyedb/dotnet/edb.py +22 -20
- pyedb/extensions/__init__.py +0 -0
- pyedb/extensions/via_design_backend.py +681 -0
- pyedb/grpc/database/components.py +537 -686
- pyedb/grpc/database/control_file.py +458 -149
- pyedb/grpc/database/definition/component_def.py +17 -14
- pyedb/grpc/database/definition/materials.py +60 -60
- pyedb/grpc/database/definition/package_def.py +8 -8
- pyedb/grpc/database/definition/padstack_def.py +31 -33
- pyedb/grpc/database/definitions.py +6 -4
- pyedb/grpc/database/geometry/arc_data.py +5 -5
- pyedb/grpc/database/geometry/point_3d_data.py +3 -3
- pyedb/grpc/database/geometry/polygon_data.py +5 -5
- pyedb/grpc/database/hfss.py +399 -397
- pyedb/grpc/database/hierarchy/component.py +60 -58
- pyedb/grpc/database/hierarchy/pin_pair_model.py +6 -6
- pyedb/grpc/database/hierarchy/pingroup.py +13 -11
- pyedb/grpc/database/hierarchy/s_parameter_model.py +1 -1
- pyedb/grpc/database/hierarchy/spice_model.py +1 -1
- pyedb/grpc/database/layers/layer.py +2 -2
- pyedb/grpc/database/layers/stackup_layer.py +144 -44
- pyedb/grpc/database/layout/layout.py +12 -12
- pyedb/grpc/database/layout/voltage_regulator.py +8 -8
- pyedb/grpc/database/layout_validation.py +5 -5
- pyedb/grpc/database/modeler.py +248 -245
- pyedb/grpc/database/net/differential_pair.py +4 -4
- pyedb/grpc/database/net/extended_net.py +7 -8
- pyedb/grpc/database/net/net.py +57 -46
- pyedb/grpc/database/nets.py +139 -122
- pyedb/grpc/database/padstacks.py +174 -190
- pyedb/grpc/database/ports/ports.py +23 -17
- pyedb/grpc/database/primitive/padstack_instance.py +45 -30
- pyedb/grpc/database/primitive/path.py +7 -7
- pyedb/grpc/database/primitive/polygon.py +9 -9
- pyedb/grpc/database/primitive/primitive.py +21 -21
- pyedb/grpc/database/primitive/rectangle.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_general_settings.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_settings_options.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py +6 -6
- pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +2 -2
- pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py +2 -2
- pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py +1 -1
- pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py +3 -3
- pyedb/grpc/database/siwave.py +166 -214
- pyedb/grpc/database/source_excitations.py +156 -0
- pyedb/grpc/database/stackup.py +415 -316
- pyedb/grpc/database/terminal/bundle_terminal.py +12 -12
- pyedb/grpc/database/terminal/edge_terminal.py +6 -5
- pyedb/grpc/database/terminal/padstack_instance_terminal.py +13 -13
- pyedb/grpc/database/terminal/pingroup_terminal.py +12 -12
- pyedb/grpc/database/terminal/point_terminal.py +6 -6
- pyedb/grpc/database/terminal/terminal.py +26 -26
- pyedb/grpc/database/utility/heat_sink.py +5 -5
- pyedb/grpc/database/utility/hfss_extent_info.py +21 -21
- pyedb/grpc/database/utility/layout_statistics.py +13 -13
- pyedb/grpc/database/utility/rlc.py +3 -3
- pyedb/grpc/database/utility/sources.py +1 -1
- pyedb/grpc/database/utility/sweep_data_distribution.py +1 -1
- pyedb/grpc/edb.py +524 -764
- {pyedb-0.49.0.dist-info → pyedb-0.50.1.dist-info}/METADATA +1 -1
- {pyedb-0.49.0.dist-info → pyedb-0.50.1.dist-info}/RECORD +77 -77
- pyedb/extensions/pre_layout_design_toolkit/via_design.py +0 -1151
- pyedb/grpc/database/utility/simulation_configuration.py +0 -3305
- {pyedb-0.49.0.dist-info → pyedb-0.50.1.dist-info}/LICENSE +0 -0
- {pyedb-0.49.0.dist-info → pyedb-0.50.1.dist-info}/WHEEL +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=Y4YEDGngFtDuI1Y2heTas6XqgCu74cjmMoJ7Y4khAFE,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
|
|
@@ -12,13 +12,13 @@ pyedb/configuration/cfg_common.py,sha256=U45p2qksEwMY_woVFaSwn5qjib9QQJDShajZZ-I
|
|
|
12
12
|
pyedb/configuration/cfg_components.py,sha256=LFciizI0GIkny-A3PE2_KPnhf1VDjkQph7QNa35fN24,26082
|
|
13
13
|
pyedb/configuration/cfg_data.py,sha256=bZOZDuzgw33Vff0cGXEmh5issNHg_Gcvr-yXCYNiQG4,3860
|
|
14
14
|
pyedb/configuration/cfg_general.py,sha256=RvBG9DnGB7700fDTa8eEZpOUgI2wwS3GoPXOUzmaDNQ,3200
|
|
15
|
-
pyedb/configuration/cfg_modeler.py,sha256=
|
|
15
|
+
pyedb/configuration/cfg_modeler.py,sha256=BzoYWujOG-DO-BFLHywQXPvc68jZ0Hw8qMRWrA5ci28,11953
|
|
16
16
|
pyedb/configuration/cfg_nets.py,sha256=vAtp3tTTuTDSDZw6uay4qXjbThqcCoyEXf7fNKW64DY,2900
|
|
17
17
|
pyedb/configuration/cfg_operations.py,sha256=YikpnTqaW_5D3-jtg8zAzDrsC6JXbsUOHPYDDtjKdnY,8340
|
|
18
18
|
pyedb/configuration/cfg_package_definition.py,sha256=aNA3ympBjvxtw9hVehF9PQWaEvNLVB8cwb-r7MtZtzY,7844
|
|
19
19
|
pyedb/configuration/cfg_padstacks.py,sha256=RxCmRe4qbIefuKYaPCPhZ6fJ3-Tz9sektvXnswljQwU,39801
|
|
20
20
|
pyedb/configuration/cfg_pin_groups.py,sha256=UkDgJNAa6E9bv2Jo0K4vY2eTuqC61qcgqszrZ_bUcEg,5595
|
|
21
|
-
pyedb/configuration/cfg_ports_sources.py,sha256=
|
|
21
|
+
pyedb/configuration/cfg_ports_sources.py,sha256=sXICg4aBrwYBz_bmZ0v_3H72Wpvph8-8DYUcNG3WUBE,40109
|
|
22
22
|
pyedb/configuration/cfg_s_parameter_models.py,sha256=UBrCOt69AQof5r2OqpoSJ7E8G52jo0lAcSfYvJhm8hU,10224
|
|
23
23
|
pyedb/configuration/cfg_setup.py,sha256=A8fm2Qqy9SFi8peToI55rfh0jxPESmOM6ecNBWHCggA,17526
|
|
24
24
|
pyedb/configuration/cfg_spice_models.py,sha256=Q_5j2-V6cepSFcnijot8iypTqzanLp7HOz-agmnwKns,2570
|
|
@@ -26,28 +26,28 @@ pyedb/configuration/cfg_stackup.py,sha256=T28HTuR-EUIEGh41oIVD_BDambEds6CmJXmSgg
|
|
|
26
26
|
pyedb/configuration/configuration.py,sha256=KFMN90cxeUhbE7lpqmZLDBOEL9I8YTSNLeqzFkwzHXE,23023
|
|
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=GXZL8xxYvfw-K3fb2S_eX2K_o6h-K2uOX63nY3VVXHs,188058
|
|
30
30
|
pyedb/dotnet/database/Variables.py,sha256=CX12X6u-2tbcgjYJU643TVjIJEGB58a2nM4f4wMVTR8,77687
|
|
31
31
|
pyedb/dotnet/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
32
|
-
pyedb/dotnet/database/components.py,sha256=
|
|
32
|
+
pyedb/dotnet/database/components.py,sha256=7Lpe_ivKhfhOg634LPpBct3Ei6-KGvk9FHyb7cKumyE,111400
|
|
33
33
|
pyedb/dotnet/database/general.py,sha256=k2Bcr5VV-QUzEZlYorqYCX1ZchHBH7WqUvc8maMxId0,4716
|
|
34
34
|
pyedb/dotnet/database/hfss.py,sha256=I1PxGkIVXQjC0obuN7J6BYGXmfKiqHwHHPtaCTIS-9E,69165
|
|
35
35
|
pyedb/dotnet/database/layout_obj_instance.py,sha256=se6eJ2kfQOAZfAwObCBdr0A7CCD3st4aiPPVJR9eQoA,1407
|
|
36
36
|
pyedb/dotnet/database/layout_validation.py,sha256=kanRMaFz7Xv_3jFUwdbbzc1d6Rj6kaHAjM4eNOTrYIk,13597
|
|
37
|
-
pyedb/dotnet/database/materials.py,sha256=
|
|
38
|
-
pyedb/dotnet/database/modeler.py,sha256=
|
|
37
|
+
pyedb/dotnet/database/materials.py,sha256=Y0E1haDbazf6lEUPQA19gEiDX9I3tPWgo0rf5Gg9_po,48072
|
|
38
|
+
pyedb/dotnet/database/modeler.py,sha256=aQKqS3LWLJ5SxhT4L_oGtcgYVnKEojoZm-Cm9CYmdiw,57733
|
|
39
39
|
pyedb/dotnet/database/net_class.py,sha256=NxRX8feIaJyf3NmRfSzZ08ItDbZOucOyAnTHZh-LkUI,11354
|
|
40
40
|
pyedb/dotnet/database/nets.py,sha256=bs7aX6a3xWWNzxsX471omu17_4jmC1HmNH9q8fefBJc,25614
|
|
41
41
|
pyedb/dotnet/database/padstack.py,sha256=A85zw3BgqRUQm-UzbLMzeY1KrhIhju3lcLe7AqsVGqU,73492
|
|
42
42
|
pyedb/dotnet/database/siwave.py,sha256=08Dx280x9TQ7Kl4lgEmFcnOp59Vnf2nRbdtAcJQ2atw,64326
|
|
43
|
-
pyedb/dotnet/database/stackup.py,sha256=
|
|
43
|
+
pyedb/dotnet/database/stackup.py,sha256=FfKqEa4iUlP5qeOzuQapEnXGS__IrksIWlfmiCd0szg,120090
|
|
44
44
|
pyedb/dotnet/database/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
pyedb/dotnet/database/cell/connectable.py,sha256=7B8_w_IRLtzb6bLwm2-HR8ScURZb0P5dhE6jezBS8Ps,2864
|
|
46
46
|
pyedb/dotnet/database/cell/layout.py,sha256=dTx28Uj1uyjpan69vuIitv-G7h654R9JbO4-PPOI-_0,13172
|
|
47
47
|
pyedb/dotnet/database/cell/layout_obj.py,sha256=YpyXv8L9vHAH1Lvbu9s_2SlBExifBQrMnlvmvo7YO7M,2765
|
|
48
48
|
pyedb/dotnet/database/cell/voltage_regulator.py,sha256=p9PGP4f-uB75Y9Cf3RlB_IkAadVVa3vdhXnztvsH12g,5387
|
|
49
49
|
pyedb/dotnet/database/cell/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
-
pyedb/dotnet/database/cell/hierarchy/component.py,sha256=
|
|
50
|
+
pyedb/dotnet/database/cell/hierarchy/component.py,sha256=D0zF2p_V9zQLhVBx-H4KqflAX2vRrTnzAvNwRus29II,36727
|
|
51
51
|
pyedb/dotnet/database/cell/hierarchy/hierarchy_obj.py,sha256=B42_qDotHyyhDOZM_fA1hzvPaqqR52A45u1AvOPmhFc,2160
|
|
52
52
|
pyedb/dotnet/database/cell/hierarchy/model.py,sha256=RHZTe4-IvF4dGWXXj9zB30zdRJaxhWngmJ_QQc9jkp0,3198
|
|
53
53
|
pyedb/dotnet/database/cell/hierarchy/netlist_model.py,sha256=fF6tY-6s-lW9EuvJ5sw3RlIkjuoSjeZbrNk5wG-_hzM,1356
|
|
@@ -81,14 +81,14 @@ pyedb/dotnet/database/edb_data/edbvalue.py,sha256=Vj_11HXsQUNavizKp5FicORm6cjhXR
|
|
|
81
81
|
pyedb/dotnet/database/edb_data/hfss_extent_info.py,sha256=Ydzle6moatP89kQdjnzyNabsCW0KXE4WYqDv7sFyLb8,13040
|
|
82
82
|
pyedb/dotnet/database/edb_data/layer_data.py,sha256=4Z_eaHSfGfwQBKETEmGSwMvwGzvirtwYw4G4TwonNiA,34314
|
|
83
83
|
pyedb/dotnet/database/edb_data/nets_data.py,sha256=siq2w5CT5D5PeK9tC_vaGM54UOyqnYkcP4kUts459es,10009
|
|
84
|
-
pyedb/dotnet/database/edb_data/padstacks_data.py,sha256=
|
|
84
|
+
pyedb/dotnet/database/edb_data/padstacks_data.py,sha256=oMkjUoLLjZI7DclPd-0Qd4KcfVARCuBHsGEKXbyBb_Y,83624
|
|
85
85
|
pyedb/dotnet/database/edb_data/ports.py,sha256=qoqTqk47E4xtg43uvQ_SWCEUQscFBjt2bfcj9vsQsLI,7405
|
|
86
|
-
pyedb/dotnet/database/edb_data/primitives_data.py,sha256=
|
|
86
|
+
pyedb/dotnet/database/edb_data/primitives_data.py,sha256=fN9YvtVgBJ-WCHxoIPgDxhhhs5-oQPK9JmqMbJBlSiI,16836
|
|
87
87
|
pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py,sha256=f_09VvuDHeaIuTivSi2OiAEv8aJ52vBasuBoSS9sCQE,20953
|
|
88
88
|
pyedb/dotnet/database/edb_data/simulation_configuration.py,sha256=epMOclqz9nyewh2zEHFzylSS6e4-10dAqKzzZYbkgaw,100432
|
|
89
89
|
pyedb/dotnet/database/edb_data/sources.py,sha256=PEJXUwHALV3P6n8_OldlFrgeBfGlXq3EMNzC_PKO_1Q,15700
|
|
90
90
|
pyedb/dotnet/database/edb_data/utilities.py,sha256=ztJdG7fy-e4OoCOqmIYr2xE7Fz6YMsEEVNxIengD0mA,4938
|
|
91
|
-
pyedb/dotnet/database/edb_data/variables.py,sha256=
|
|
91
|
+
pyedb/dotnet/database/edb_data/variables.py,sha256=btUo21NCnK2_VuPwysEyI_qzc5I-VfPW0r_z7YyoTPU,3548
|
|
92
92
|
pyedb/dotnet/database/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
93
|
pyedb/dotnet/database/geometry/point_data.py,sha256=Cbs2849-Q6KC2nSr8AqFyhQrt2SSDFaTaZLRDeyP1EM,2174
|
|
94
94
|
pyedb/dotnet/database/geometry/polygon_data.py,sha256=TDNuuqzNUYDB7QNNAbvJsq9YGAzYbAbc0vG7lz3Tmb4,6206
|
|
@@ -96,7 +96,7 @@ pyedb/dotnet/database/sim_setup_data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQm
|
|
|
96
96
|
pyedb/dotnet/database/sim_setup_data/data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
97
97
|
pyedb/dotnet/database/sim_setup_data/data/adaptive_frequency_data.py,sha256=tlHI7PUUoseNnJAtihpjb1PwXYNr-4ztAAnunlLLWVQ,2463
|
|
98
98
|
pyedb/dotnet/database/sim_setup_data/data/mesh_operation.py,sha256=WqDQjs1yA8MDX0PtybjDEelvnn5B9L2xIts0BH4Y9dw,8775
|
|
99
|
-
pyedb/dotnet/database/sim_setup_data/data/settings.py,sha256=
|
|
99
|
+
pyedb/dotnet/database/sim_setup_data/data/settings.py,sha256=kX2JPn0PJQ27Z1d6UxVTaMZiHl_wNTWQBhO9WqDMCY0,29266
|
|
100
100
|
pyedb/dotnet/database/sim_setup_data/data/sim_setup_info.py,sha256=hN2TeXa8dbtOmEtwobhKuwomJXYs8cSJum3HQofuW3Y,4479
|
|
101
101
|
pyedb/dotnet/database/sim_setup_data/data/simulation_settings.py,sha256=ag-nl1gwKlNJOb3y7fBMSoSEwbUG_rwLzM25jLp8ado,10727
|
|
102
102
|
pyedb/dotnet/database/sim_setup_data/data/siw_dc_ir_settings.py,sha256=FnvDY1oxpnPo0EYMVXT7yfW-e-W3_NOGnvUvQYta4Ls,8627
|
|
@@ -105,11 +105,12 @@ pyedb/dotnet/database/sim_setup_data/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
|
105
105
|
pyedb/dotnet/database/sim_setup_data/io/siwave.py,sha256=92iEZrhA2CUTZ7wynL5nxVVwi2XKKqppx7AcvvoqK6E,31387
|
|
106
106
|
pyedb/dotnet/database/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
107
107
|
pyedb/dotnet/database/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
|
|
108
|
-
pyedb/dotnet/database/utilities/hfss_simulation_setup.py,sha256=
|
|
108
|
+
pyedb/dotnet/database/utilities/hfss_simulation_setup.py,sha256=EbaARi2L_Q00N2uaoV0idMzz-XG1DQ2-Rf7XVNAYinc,14053
|
|
109
109
|
pyedb/dotnet/database/utilities/obj_base.py,sha256=xSGTbfh4pbNIw3EjqtjFMiN8rWM2JhYZ2eU73qHAGlI,2883
|
|
110
110
|
pyedb/dotnet/database/utilities/simulation_setup.py,sha256=YDOBKSU5cJ1crSrAccKVh8FGf0p84dghkEn8bTVG4hU,13320
|
|
111
111
|
pyedb/dotnet/database/utilities/siwave_simulation_setup.py,sha256=UhBBHd-Nmj5SKR4wtVprOULAnVegKCSQv840yvJNlyo,13924
|
|
112
|
-
pyedb/extensions/
|
|
112
|
+
pyedb/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
|
+
pyedb/extensions/via_design_backend.py,sha256=J_9XYbAASPW9e4suyLDal5TcnVmqw-HI0zzu766_HQo,24247
|
|
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
|
|
@@ -119,99 +120,98 @@ pyedb/generic/general_methods.py,sha256=Lg4k53Ny9LraiU6AQX5WwBiPFqtvGaZ3Ik7LcWil
|
|
|
119
120
|
pyedb/generic/plot.py,sha256=4zCA5lpk-FhPmWR7xi6yecc5lZtRpxJdd3B8FLGXmxE,4705
|
|
120
121
|
pyedb/generic/process.py,sha256=i0poMbEnFFAsnNOPWN-myMnUaG7hMClKi9kGPMFyvCM,11148
|
|
121
122
|
pyedb/generic/settings.py,sha256=QTX5OVZ8sVPIy_QaSxRODUWvoXkYkVpzh3l6pQPseKQ,9220
|
|
122
|
-
pyedb/grpc/edb.py,sha256=
|
|
123
|
+
pyedb/grpc/edb.py,sha256=uRlId4tB8E0Vc5Rl_rGvN-qkFL-CSt9_k_zRt7B0MiE,150010
|
|
123
124
|
pyedb/grpc/edb_init.py,sha256=APv7vPNSoW9FMqwyaUYfmMnYHYtyvy9UejIURIiDjnI,14320
|
|
124
125
|
pyedb/grpc/rpc_session.py,sha256=HEGyWpmF8bvRcS_33C7-cOGPUdtiu3PMDTFOgP1LSSQ,7065
|
|
125
126
|
pyedb/grpc/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
126
|
-
pyedb/grpc/database/components.py,sha256=
|
|
127
|
-
pyedb/grpc/database/control_file.py,sha256=
|
|
128
|
-
pyedb/grpc/database/definitions.py,sha256=
|
|
127
|
+
pyedb/grpc/database/components.py,sha256=_XgQcVLmBW43qax1YwVVwU6Y9iW_U0wsy3Hv_kRqWY8,75054
|
|
128
|
+
pyedb/grpc/database/control_file.py,sha256=WVl1EKArIZ9FOFX_NC93B9yl3KOV5OFqjIAN4-uD5TI,55778
|
|
129
|
+
pyedb/grpc/database/definitions.py,sha256=bERhfs4Vs1JWwZvCBOzt4vnpNF8bVEVvW_-i8fDFz5Q,3053
|
|
129
130
|
pyedb/grpc/database/general.py,sha256=QBZlMO4Tzec00HcaLVQ8fDTLox-pHjOcH2wpWge2sZw,1633
|
|
130
|
-
pyedb/grpc/database/hfss.py,sha256=
|
|
131
|
-
pyedb/grpc/database/layout_validation.py,sha256=
|
|
132
|
-
pyedb/grpc/database/modeler.py,sha256=
|
|
133
|
-
pyedb/grpc/database/nets.py,sha256=
|
|
134
|
-
pyedb/grpc/database/padstacks.py,sha256=
|
|
135
|
-
pyedb/grpc/database/siwave.py,sha256=
|
|
136
|
-
pyedb/grpc/database/source_excitations.py,sha256=
|
|
137
|
-
pyedb/grpc/database/stackup.py,sha256=
|
|
131
|
+
pyedb/grpc/database/hfss.py,sha256=ewnomtlEWwhOmFTrqjdZ04maNWBvuGiGP2ZLNhJI_TI,42264
|
|
132
|
+
pyedb/grpc/database/layout_validation.py,sha256=0nV9qcLk4Il30qNT0uzyLfJq-6nhoyeWvDJ31fnLzKI,13555
|
|
133
|
+
pyedb/grpc/database/modeler.py,sha256=YsNbWQhGskVgu898To03VwfjU8HMkSLW5toVdzt2NiM,52740
|
|
134
|
+
pyedb/grpc/database/nets.py,sha256=uwOwA9n1zBWjp9n0Eg5pPAmPRK_lAgy8jsLDgzPJgSY,21425
|
|
135
|
+
pyedb/grpc/database/padstacks.py,sha256=B0KJXGCTOm2aS89XwzxcEh9njCTeeJf9FnmYsgq-sXY,64953
|
|
136
|
+
pyedb/grpc/database/siwave.py,sha256=1rKiio6LzmVtFutRnKUp8OGFONdju3ELThpDJVZ4HUA,33831
|
|
137
|
+
pyedb/grpc/database/source_excitations.py,sha256=cv9gxsfjmiWXkXoM1vPRJpzzOFCzgWmfGuvJ3difVns,114756
|
|
138
|
+
pyedb/grpc/database/stackup.py,sha256=F4dwlkrCH_aJbHtql61SgADVagE-efT6LCZO3SOswWM,110239
|
|
138
139
|
pyedb/grpc/database/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
-
pyedb/grpc/database/definition/component_def.py,sha256=
|
|
140
|
+
pyedb/grpc/database/definition/component_def.py,sha256=2c5Xz98bdOAdOAX5kat2PY5N9-BiA1T6yw6TsWYRUmg,7579
|
|
140
141
|
pyedb/grpc/database/definition/component_model.py,sha256=9TRfILC3FfmgSrnYRwEdF2kbY4jFcC5rSeR9xeeb3wg,1689
|
|
141
142
|
pyedb/grpc/database/definition/component_pin.py,sha256=PfwTv6ILn6irJ4P5nB0PNtz2U5dR4NPevsw6P33pAfQ,1493
|
|
142
|
-
pyedb/grpc/database/definition/materials.py,sha256=
|
|
143
|
+
pyedb/grpc/database/definition/materials.py,sha256=moEMnjCwKDUtjZtT9chfgSmNwwiGfm8oYEkel5FUOhs,45552
|
|
143
144
|
pyedb/grpc/database/definition/n_port_component_model.py,sha256=8dC636At0iyfAWShugHGDOerytpoV6cvShPEGkXH89I,1543
|
|
144
|
-
pyedb/grpc/database/definition/package_def.py,sha256=
|
|
145
|
-
pyedb/grpc/database/definition/padstack_def.py,sha256=
|
|
145
|
+
pyedb/grpc/database/definition/package_def.py,sha256=4fcngmcnyXSwO-0qMlzcCLZT-H_NnPcf83YhIozUNmM,8134
|
|
146
|
+
pyedb/grpc/database/definition/padstack_def.py,sha256=8eFJOVlwX4GQIaoeOOwfv9mVFLfclFUlRdzXpfdX8CY,29903
|
|
146
147
|
pyedb/grpc/database/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
-
pyedb/grpc/database/geometry/arc_data.py,sha256=
|
|
148
|
-
pyedb/grpc/database/geometry/point_3d_data.py,sha256=
|
|
148
|
+
pyedb/grpc/database/geometry/arc_data.py,sha256=sFTsiucJ1DGuNFNRO1jFLR9mzZDydA5GYsRevUB81Ss,2719
|
|
149
|
+
pyedb/grpc/database/geometry/point_3d_data.py,sha256=OsnaVg6ttNWDRe4atnt9Ry1iUqMTqVdumrYa6u4VuRA,2190
|
|
149
150
|
pyedb/grpc/database/geometry/point_data.py,sha256=q8a6-MRUunTl6-kBbYuraiVbYF_EOY1eSMmwo5_ouuk,1433
|
|
150
|
-
pyedb/grpc/database/geometry/polygon_data.py,sha256=
|
|
151
|
+
pyedb/grpc/database/geometry/polygon_data.py,sha256=34az656vTUDj_xiGmhfRiufAV5zyvDTVTdU0cJoshSg,4856
|
|
151
152
|
pyedb/grpc/database/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
-
pyedb/grpc/database/hierarchy/component.py,sha256=
|
|
153
|
+
pyedb/grpc/database/hierarchy/component.py,sha256=6ONm-C66Smz_R8KCXShQPGk50p4hCWUjm6vh_ytFf_0,41742
|
|
153
154
|
pyedb/grpc/database/hierarchy/model.py,sha256=H3I2S6BxWorFBaRlvIPBTQUqpXXAdch4KZqpRXjNtI4,1413
|
|
154
155
|
pyedb/grpc/database/hierarchy/netlist_model.py,sha256=VtXxTTTArojCOOLShHVlGOS1OTx30YZ8_UdSZWaKaEA,1432
|
|
155
|
-
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=
|
|
156
|
-
pyedb/grpc/database/hierarchy/pingroup.py,sha256=
|
|
157
|
-
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=
|
|
158
|
-
pyedb/grpc/database/hierarchy/spice_model.py,sha256=
|
|
156
|
+
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=C76iVvPgXQAxMvOZvbqgaKslCuWDE4XC9qvgCekoOLU,3555
|
|
157
|
+
pyedb/grpc/database/hierarchy/pingroup.py,sha256=Dp0-layi8EqZXRDNnAwPfZbEIbyR7ju-DrDCnQQy0VQ,8046
|
|
158
|
+
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=gMCPTznjpT_6WVJaIMOItdpo5zhV-QPC3CUHEtMqVm4,1535
|
|
159
|
+
pyedb/grpc/database/hierarchy/spice_model.py,sha256=pyKr5mQrezhUzJtaArvWa8fODNiTPza5gFSSEiSmLAI,2022
|
|
159
160
|
pyedb/grpc/database/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
-
pyedb/grpc/database/layers/layer.py,sha256=
|
|
161
|
-
pyedb/grpc/database/layers/stackup_layer.py,sha256=
|
|
161
|
+
pyedb/grpc/database/layers/layer.py,sha256=bPieGISKPGZ_jY8GOq9L6Ywoqcmv_Sq-cM3AS4OtXRE,3432
|
|
162
|
+
pyedb/grpc/database/layers/stackup_layer.py,sha256=Nxy2JHjpRG8FuvCl22he9BFSuxWlQNyyRNBONyWGOx0,27249
|
|
162
163
|
pyedb/grpc/database/layout/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
164
|
pyedb/grpc/database/layout/cell.py,sha256=5qMqEBvIruIE3Ru1JBYMkGlS31uOJShWm3J3OMd8HiQ,1379
|
|
164
|
-
pyedb/grpc/database/layout/layout.py,sha256=
|
|
165
|
-
pyedb/grpc/database/layout/voltage_regulator.py,sha256=
|
|
165
|
+
pyedb/grpc/database/layout/layout.py,sha256=Zb-UrNeWUqL958io8EbKaijJ79nqRf_eNQS1or1r6-0,9267
|
|
166
|
+
pyedb/grpc/database/layout/voltage_regulator.py,sha256=OiZ6M6bFBUPX9XGFzAU3s_OYAlwSQ4TcoH7k3e6M58o,5200
|
|
166
167
|
pyedb/grpc/database/net/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
-
pyedb/grpc/database/net/differential_pair.py,sha256=
|
|
168
|
-
pyedb/grpc/database/net/extended_net.py,sha256=
|
|
169
|
-
pyedb/grpc/database/net/net.py,sha256=
|
|
168
|
+
pyedb/grpc/database/net/differential_pair.py,sha256=wVKMsLqtZCPwq_TE_F33hnNPnudNBOmu3gWKgO5i0Sk,4715
|
|
169
|
+
pyedb/grpc/database/net/extended_net.py,sha256=uoilyrLSOBq7mU4CjI4l7odlF0K7B8gb-AtrQGplSjo,12936
|
|
170
|
+
pyedb/grpc/database/net/net.py,sha256=HBEt4tQ3ys9bLMFmgBxnFQmvU-F692usrisfwdxdmR8,7769
|
|
170
171
|
pyedb/grpc/database/net/net_class.py,sha256=ojoEZ_7YJW0cEhRWIc9hLBHILBhrVPuRpRjrrBJux3c,2961
|
|
171
172
|
pyedb/grpc/database/ports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
-
pyedb/grpc/database/ports/ports.py,sha256=
|
|
173
|
+
pyedb/grpc/database/ports/ports.py,sha256=G7eb-fimuFC8gprbu8Tk1JOZ2f-7a1rAv3QWAi1my7o,10576
|
|
173
174
|
pyedb/grpc/database/primitive/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
174
175
|
pyedb/grpc/database/primitive/bondwire.py,sha256=IpDhf1z7GtaXZ12wbK172YNGCKkDB6sQ-7wH8HAXMnA,6238
|
|
175
176
|
pyedb/grpc/database/primitive/circle.py,sha256=clKkYUTuQ-Cwbdmk7Uc6x4zi-QN53lVN2C2jKcGTF-8,2514
|
|
176
|
-
pyedb/grpc/database/primitive/padstack_instance.py,sha256=
|
|
177
|
-
pyedb/grpc/database/primitive/path.py,sha256=
|
|
178
|
-
pyedb/grpc/database/primitive/polygon.py,sha256=
|
|
179
|
-
pyedb/grpc/database/primitive/primitive.py,sha256=
|
|
180
|
-
pyedb/grpc/database/primitive/rectangle.py,sha256=
|
|
177
|
+
pyedb/grpc/database/primitive/padstack_instance.py,sha256=BPE0AJpGJYUaMoM4fMxO9QVjo8EzBTJExMOrJ45Jyok,38426
|
|
178
|
+
pyedb/grpc/database/primitive/path.py,sha256=y7QWlR6RPCv0o1pOogFBdxtXnJkDiNI8x1fnJMjpQ2E,12120
|
|
179
|
+
pyedb/grpc/database/primitive/polygon.py,sha256=8ZMAla2fgaRBeiH4Pk9c7vPd2rjkxboadXX1-bNtTN0,9562
|
|
180
|
+
pyedb/grpc/database/primitive/primitive.py,sha256=7SXnf-YImLDwqj90oEfTY2rrKUU4STeLrFDBJnpRptw,25120
|
|
181
|
+
pyedb/grpc/database/primitive/rectangle.py,sha256=zJ3OTpqR6wIbHuItUJhGGictaBYuCatLHFzCgBXEWFo,5366
|
|
181
182
|
pyedb/grpc/database/simulation_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
183
|
pyedb/grpc/database/simulation_setup/adaptive_frequency.py,sha256=uEuYtf0RcRH5XlcBiTEN8sgdZZBrob9k7h5KW-I4QYs,1455
|
|
183
184
|
pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py,sha256=ujG1mD8h0SXLOVXbYBrvKVrCRFHRQGKuPebzekcaE0M,1531
|
|
184
|
-
pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py,sha256=
|
|
185
|
+
pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py,sha256=pmMbtPbxHs9toxGHUFsdijfFD54794v9NB-T6e8mtOw,2353
|
|
185
186
|
pyedb/grpc/database/simulation_setup/hfss_dcr_settings.py,sha256=H_aqDcxATHK8yeJ_l8-Qz9wVGZjK_7EBg8zgBS8IeoU,1507
|
|
186
|
-
pyedb/grpc/database/simulation_setup/hfss_general_settings.py,sha256=
|
|
187
|
-
pyedb/grpc/database/simulation_setup/hfss_settings_options.py,sha256=
|
|
188
|
-
pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py,sha256=
|
|
189
|
-
pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py,sha256=
|
|
187
|
+
pyedb/grpc/database/simulation_setup/hfss_general_settings.py,sha256=wf6uE-I07H169NzVV5WIUSwWrZr4R-DHxN1X28gylfA,2440
|
|
188
|
+
pyedb/grpc/database/simulation_setup/hfss_settings_options.py,sha256=NJxdxFWHiOBXiTznv3PLhNdctlvFRqPUqU-pWURgJiE,2936
|
|
189
|
+
pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py,sha256=c1raWL_9BzGSPxGHHodho1WlJ0zp_iUzc3oJtZfaUMA,4088
|
|
190
|
+
pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py,sha256=R3KN4SwZwgsc_2VjgbdQhBHSifK1eG2rzB3Kx7ZRT1U,15322
|
|
190
191
|
pyedb/grpc/database/simulation_setup/hfss_solver_settings.py,sha256=Xi4N-cCO_8-JxMkI_tGyJ3SGcJrP5_rLvdbXx7P-uJI,1474
|
|
191
192
|
pyedb/grpc/database/simulation_setup/mesh_operation.py,sha256=Ejf9v9njc-Ll3jw_DdA26CAT1WreludC6CwBrpoS16A,1439
|
|
192
193
|
pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py,sha256=mo2zHBsdxHG9N81FNefulKjUv-Oi_VkV49kvKKXrhrs,1505
|
|
193
194
|
pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py,sha256=Sp-r6W87FjsWZYY1ugqTCGZ-KMXzCZ96FMl1fj3mdrU,1499
|
|
194
|
-
pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py,sha256=
|
|
195
|
-
pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py,sha256=
|
|
195
|
+
pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py,sha256=sgyYyVCm6kzURojfGvr8n7bBSsvKeljrD8mQKSGL_wo,2412
|
|
196
|
+
pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py,sha256=31ELFhO6TFB4-tg3rqTsfGkTsozEPq-4gCZucIO061c,4791
|
|
196
197
|
pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py,sha256=--LrmRx54PkvgzKEc7HbmVtttir3uOAjJaehilasMaA,1524
|
|
197
|
-
pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=
|
|
198
|
+
pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=dAT5T2YY0FTvLw-bLmNsbSeVya5q8QhQNKDapboDQCM,6499
|
|
198
199
|
pyedb/grpc/database/simulation_setup/sweep_data.py,sha256=NfoUdUdgRFTw9SqR0UZhxaFA13MLpicDa7JXhgkBsug,1897
|
|
199
200
|
pyedb/grpc/database/terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
|
-
pyedb/grpc/database/terminal/bundle_terminal.py,sha256=
|
|
201
|
-
pyedb/grpc/database/terminal/edge_terminal.py,sha256=
|
|
202
|
-
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=
|
|
203
|
-
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=
|
|
204
|
-
pyedb/grpc/database/terminal/point_terminal.py,sha256=
|
|
205
|
-
pyedb/grpc/database/terminal/terminal.py,sha256=
|
|
201
|
+
pyedb/grpc/database/terminal/bundle_terminal.py,sha256=qfT9KTHHesSm4RRfLzoygTAndq34Jv79ioPl2tPSefc,6624
|
|
202
|
+
pyedb/grpc/database/terminal/edge_terminal.py,sha256=rGxvFqm2pBQ5R7VC4ZkLB1l1n_BiXCfGD8BaqrJ6yO8,5511
|
|
203
|
+
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=o1tQ1sD0I_mo7TfTt854zOfZKFek93eugakNHNaif-g,6185
|
|
204
|
+
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=Hd7VTVrWleCF3s9UKrquCutsFcnDyn0d_3YFufNI5zw,5835
|
|
205
|
+
pyedb/grpc/database/terminal/point_terminal.py,sha256=NSekpBvANMkde_nJsxzNDYpLfx4lRd5AWqxdejeK0FY,3540
|
|
206
|
+
pyedb/grpc/database/terminal/terminal.py,sha256=IlWhG5ZkbdjTtAdQUft_EJibhD9h5ZSCDfp4nHaeh40,17110
|
|
206
207
|
pyedb/grpc/database/utility/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
207
208
|
pyedb/grpc/database/utility/constants.py,sha256=XF66Hj7aQWJfqn8rDhyovyIbYBt4h_ab7lgpUqzgcPc,1288
|
|
208
|
-
pyedb/grpc/database/utility/heat_sink.py,sha256=
|
|
209
|
-
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=
|
|
210
|
-
pyedb/grpc/database/utility/layout_statistics.py,sha256=
|
|
211
|
-
pyedb/grpc/database/utility/rlc.py,sha256=
|
|
212
|
-
pyedb/grpc/database/utility/
|
|
213
|
-
pyedb/grpc/database/utility/
|
|
214
|
-
pyedb/grpc/database/utility/sweep_data_distribution.py,sha256=m2nUhp4kBJE8CfVPPTRz9uaeC9swWGB26lT7eI9QtKo,3753
|
|
209
|
+
pyedb/grpc/database/utility/heat_sink.py,sha256=hLj93zVDAUdcmcjqWV3ucp3BuAKJVqJ5cu3xIfcuVYM,3581
|
|
210
|
+
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=vttdcPFaz1PxcYMT3wdoGcw_odCGpuhL0LkS0ZtIqK8,14344
|
|
211
|
+
pyedb/grpc/database/utility/layout_statistics.py,sha256=NFoHEWzGbrkThosROCeZCjBSGbSak0ctlCCZaMeypvE,6809
|
|
212
|
+
pyedb/grpc/database/utility/rlc.py,sha256=H0vzzxYPzr-6CTEDjlAs9fEY5emu4ugseKklfnHWO54,2185
|
|
213
|
+
pyedb/grpc/database/utility/sources.py,sha256=sSU14NaMA9mDBUvwXIx7hNpwmGz4mmwtq92w1urusuk,10448
|
|
214
|
+
pyedb/grpc/database/utility/sweep_data_distribution.py,sha256=ClGfo8MNH2LPWWZ-swsSpvc_yLxI-GVxLBkjn5-WS0U,3760
|
|
215
215
|
pyedb/grpc/database/utility/xml_control_file.py,sha256=rEsdYykh5-GcYTrZW32nk3IPpdNjlhlQ2PYgbkBgQ_8,48217
|
|
216
216
|
pyedb/ipc2581/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
217
|
pyedb/ipc2581/history_record.py,sha256=s1GjcIgnZHlNCBOeEERBDX7xDuqhXmh2Ctt3ccFDWso,2739
|
|
@@ -282,7 +282,7 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
|
|
|
282
282
|
pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
|
|
283
283
|
pyedb/modeler/geometry_operators.py,sha256=YhR-QE0dvIkbp4SsjWp309KDE1OZa6wUzr8a634MuJ4,74195
|
|
284
284
|
pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
|
|
285
|
-
pyedb-0.
|
|
286
|
-
pyedb-0.
|
|
287
|
-
pyedb-0.
|
|
288
|
-
pyedb-0.
|
|
285
|
+
pyedb-0.50.1.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
286
|
+
pyedb-0.50.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
287
|
+
pyedb-0.50.1.dist-info/METADATA,sha256=-8GsdL9iqJsSzuK0IQmI4G4-J8X1KbhNMuhFa0UZf_4,8619
|
|
288
|
+
pyedb-0.50.1.dist-info/RECORD,,
|