pyedb 0.2.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.

Files changed (128) hide show
  1. pyedb/__init__.py +17 -0
  2. pyedb/dotnet/__init__.py +0 -0
  3. pyedb/dotnet/application/Variables.py +2261 -0
  4. pyedb/dotnet/application/__init__.py +0 -0
  5. pyedb/dotnet/clr_module.py +103 -0
  6. pyedb/dotnet/edb.py +4237 -0
  7. pyedb/dotnet/edb_core/__init__.py +1 -0
  8. pyedb/dotnet/edb_core/cell/__init__.py +0 -0
  9. pyedb/dotnet/edb_core/cell/hierarchy/__init__.py +0 -0
  10. pyedb/dotnet/edb_core/cell/hierarchy/model.py +66 -0
  11. pyedb/dotnet/edb_core/components.py +2669 -0
  12. pyedb/dotnet/edb_core/configuration.py +423 -0
  13. pyedb/dotnet/edb_core/definition/__init__.py +0 -0
  14. pyedb/dotnet/edb_core/definition/component_def.py +166 -0
  15. pyedb/dotnet/edb_core/definition/component_model.py +30 -0
  16. pyedb/dotnet/edb_core/definition/definition_obj.py +18 -0
  17. pyedb/dotnet/edb_core/definition/definitions.py +12 -0
  18. pyedb/dotnet/edb_core/dotnet/__init__.py +0 -0
  19. pyedb/dotnet/edb_core/dotnet/database.py +1218 -0
  20. pyedb/dotnet/edb_core/dotnet/layout.py +238 -0
  21. pyedb/dotnet/edb_core/dotnet/primitive.py +1517 -0
  22. pyedb/dotnet/edb_core/edb_data/__init__.py +0 -0
  23. pyedb/dotnet/edb_core/edb_data/components_data.py +938 -0
  24. pyedb/dotnet/edb_core/edb_data/connectable.py +113 -0
  25. pyedb/dotnet/edb_core/edb_data/control_file.py +1268 -0
  26. pyedb/dotnet/edb_core/edb_data/design_options.py +35 -0
  27. pyedb/dotnet/edb_core/edb_data/edbvalue.py +45 -0
  28. pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py +330 -0
  29. pyedb/dotnet/edb_core/edb_data/hfss_simulation_setup_data.py +1607 -0
  30. pyedb/dotnet/edb_core/edb_data/layer_data.py +576 -0
  31. pyedb/dotnet/edb_core/edb_data/nets_data.py +281 -0
  32. pyedb/dotnet/edb_core/edb_data/obj_base.py +19 -0
  33. pyedb/dotnet/edb_core/edb_data/padstacks_data.py +2080 -0
  34. pyedb/dotnet/edb_core/edb_data/ports.py +287 -0
  35. pyedb/dotnet/edb_core/edb_data/primitives_data.py +1397 -0
  36. pyedb/dotnet/edb_core/edb_data/simulation_configuration.py +2914 -0
  37. pyedb/dotnet/edb_core/edb_data/simulation_setup.py +716 -0
  38. pyedb/dotnet/edb_core/edb_data/siwave_simulation_setup_data.py +1205 -0
  39. pyedb/dotnet/edb_core/edb_data/sources.py +514 -0
  40. pyedb/dotnet/edb_core/edb_data/terminals.py +632 -0
  41. pyedb/dotnet/edb_core/edb_data/utilities.py +148 -0
  42. pyedb/dotnet/edb_core/edb_data/variables.py +91 -0
  43. pyedb/dotnet/edb_core/general.py +181 -0
  44. pyedb/dotnet/edb_core/hfss.py +1646 -0
  45. pyedb/dotnet/edb_core/layout.py +1244 -0
  46. pyedb/dotnet/edb_core/layout_validation.py +272 -0
  47. pyedb/dotnet/edb_core/materials.py +939 -0
  48. pyedb/dotnet/edb_core/net_class.py +335 -0
  49. pyedb/dotnet/edb_core/nets.py +1215 -0
  50. pyedb/dotnet/edb_core/padstack.py +1389 -0
  51. pyedb/dotnet/edb_core/siwave.py +1427 -0
  52. pyedb/dotnet/edb_core/stackup.py +2703 -0
  53. pyedb/edb_logger.py +396 -0
  54. pyedb/generic/__init__.py +0 -0
  55. pyedb/generic/constants.py +1063 -0
  56. pyedb/generic/data_handlers.py +320 -0
  57. pyedb/generic/design_types.py +104 -0
  58. pyedb/generic/filesystem.py +150 -0
  59. pyedb/generic/general_methods.py +1535 -0
  60. pyedb/generic/plot.py +1840 -0
  61. pyedb/generic/process.py +285 -0
  62. pyedb/generic/settings.py +224 -0
  63. pyedb/ipc2581/__init__.py +0 -0
  64. pyedb/ipc2581/bom/__init__.py +0 -0
  65. pyedb/ipc2581/bom/bom.py +21 -0
  66. pyedb/ipc2581/bom/bom_item.py +32 -0
  67. pyedb/ipc2581/bom/characteristics.py +37 -0
  68. pyedb/ipc2581/bom/refdes.py +16 -0
  69. pyedb/ipc2581/content/__init__.py +0 -0
  70. pyedb/ipc2581/content/color.py +38 -0
  71. pyedb/ipc2581/content/content.py +55 -0
  72. pyedb/ipc2581/content/dictionary_color.py +29 -0
  73. pyedb/ipc2581/content/dictionary_fill.py +28 -0
  74. pyedb/ipc2581/content/dictionary_line.py +30 -0
  75. pyedb/ipc2581/content/entry_color.py +13 -0
  76. pyedb/ipc2581/content/entry_line.py +14 -0
  77. pyedb/ipc2581/content/fill.py +15 -0
  78. pyedb/ipc2581/content/layer_ref.py +10 -0
  79. pyedb/ipc2581/content/standard_geometries_dictionary.py +72 -0
  80. pyedb/ipc2581/ecad/__init__.py +0 -0
  81. pyedb/ipc2581/ecad/cad_data/__init__.py +0 -0
  82. pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +26 -0
  83. pyedb/ipc2581/ecad/cad_data/cad_data.py +37 -0
  84. pyedb/ipc2581/ecad/cad_data/component.py +41 -0
  85. pyedb/ipc2581/ecad/cad_data/drill.py +30 -0
  86. pyedb/ipc2581/ecad/cad_data/feature.py +54 -0
  87. pyedb/ipc2581/ecad/cad_data/layer.py +41 -0
  88. pyedb/ipc2581/ecad/cad_data/layer_feature.py +151 -0
  89. pyedb/ipc2581/ecad/cad_data/logical_net.py +32 -0
  90. pyedb/ipc2581/ecad/cad_data/outline.py +25 -0
  91. pyedb/ipc2581/ecad/cad_data/package.py +104 -0
  92. pyedb/ipc2581/ecad/cad_data/padstack_def.py +38 -0
  93. pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py +24 -0
  94. pyedb/ipc2581/ecad/cad_data/padstack_instance.py +62 -0
  95. pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py +26 -0
  96. pyedb/ipc2581/ecad/cad_data/path.py +89 -0
  97. pyedb/ipc2581/ecad/cad_data/phy_net.py +80 -0
  98. pyedb/ipc2581/ecad/cad_data/pin.py +31 -0
  99. pyedb/ipc2581/ecad/cad_data/polygon.py +169 -0
  100. pyedb/ipc2581/ecad/cad_data/profile.py +40 -0
  101. pyedb/ipc2581/ecad/cad_data/stackup.py +31 -0
  102. pyedb/ipc2581/ecad/cad_data/stackup_group.py +42 -0
  103. pyedb/ipc2581/ecad/cad_data/stackup_layer.py +21 -0
  104. pyedb/ipc2581/ecad/cad_data/step.py +275 -0
  105. pyedb/ipc2581/ecad/cad_header.py +33 -0
  106. pyedb/ipc2581/ecad/ecad.py +19 -0
  107. pyedb/ipc2581/ecad/spec.py +46 -0
  108. pyedb/ipc2581/history_record.py +37 -0
  109. pyedb/ipc2581/ipc2581.py +387 -0
  110. pyedb/ipc2581/logistic_header.py +25 -0
  111. pyedb/misc/__init__.py +0 -0
  112. pyedb/misc/aedtlib_personalib_install.py +14 -0
  113. pyedb/misc/downloads.py +322 -0
  114. pyedb/misc/misc.py +67 -0
  115. pyedb/misc/pyedb.runtimeconfig.json +13 -0
  116. pyedb/misc/siw_feature_config/__init__.py +0 -0
  117. pyedb/misc/siw_feature_config/emc/__init__.py +0 -0
  118. pyedb/misc/siw_feature_config/emc/component_tags.py +46 -0
  119. pyedb/misc/siw_feature_config/emc/net_tags.py +37 -0
  120. pyedb/misc/siw_feature_config/emc/tag_library.py +62 -0
  121. pyedb/misc/siw_feature_config/emc/xml_generic.py +78 -0
  122. pyedb/misc/siw_feature_config/emc_rule_checker_settings.py +179 -0
  123. pyedb/misc/utilities.py +27 -0
  124. pyedb/modeler/geometry_operators.py +2082 -0
  125. pyedb-0.2.0.dist-info/LICENSE +21 -0
  126. pyedb-0.2.0.dist-info/METADATA +208 -0
  127. pyedb-0.2.0.dist-info/RECORD +128 -0
  128. pyedb-0.2.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 ANSYS, Inc. All rights reserved.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,208 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyedb
3
+ Version: 0.2.0
4
+ Summary: Higher-Level Pythonic Ansys Electronics Data Base
5
+ Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
+ Maintainer-email: PyEDB developers <simon.vandenbrouck@ansys.com>
7
+ Requires-Python: >=3.8,<4
8
+ Description-Content-Type: text/markdown
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Requires-Dist: cffi == 1.15.1;platform_system=='Linux' and python_version == '3.7'
18
+ Requires-Dist: cffi == 1.16.0;platform_system=='Linux' and python_version > '3.7'
19
+ Requires-Dist: pywin32 >= 303;platform_system=='Windows'
20
+ Requires-Dist: ansys-pythonnet >= 3.1.0rc3
21
+ Requires-Dist: rpyc==5.3.1
22
+ Requires-Dist: psutil
23
+ Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
24
+ Requires-Dist: ansys-sphinx-theme==0.13.1 ; extra == "doc"
25
+ Requires-Dist: imageio==2.31.5 ; extra == "doc"
26
+ Requires-Dist: imageio-ffmpeg==0.4.9 ; extra == "doc"
27
+ Requires-Dist: ipython==8.13.0 ; extra == "doc" and ( python_version < '3.9')
28
+ Requires-Dist: ipython==8.17.2 ; extra == "doc" and ( python_version >= '3.9')
29
+ Requires-Dist: ipywidgets==8.1.1 ; extra == "doc"
30
+ Requires-Dist: joblib==1.3.2 ; extra == "doc"
31
+ Requires-Dist: jupyterlab==4.0.6 ; extra == "doc"
32
+ Requires-Dist: matplotlib==3.5.3 ; extra == "doc" and ( python_version == '3.7')
33
+ Requires-Dist: matplotlib==3.7.3 ; extra == "doc" and ( python_version == '3.8')
34
+ Requires-Dist: matplotlib==3.8.2 ; extra == "doc" and ( python_version > '3.8')
35
+ Requires-Dist: nbsphinx==0.9.3 ; extra == "doc"
36
+ Requires-Dist: numpydoc==1.5.0 ; extra == "doc" and ( python_version == '3.7')
37
+ Requires-Dist: numpydoc==1.6.0 ; extra == "doc" and ( python_version > '3.7')
38
+ Requires-Dist: osmnx ; extra == "doc"
39
+ Requires-Dist: pypandoc==1.11 ; extra == "doc"
40
+ Requires-Dist: pytest-sphinx==0.5.0 ; extra == "doc"
41
+ Requires-Dist: pyvista==0.42.2 ; extra == "doc" and ( python_version > '3.7')
42
+ Requires-Dist: pyvista==0.38.0 ; extra == "doc" and ( python_version <= '3.7')
43
+ Requires-Dist: recommonmark==0.7.1 ; extra == "doc"
44
+ Requires-Dist: scikit-learn==1.3.0 ; extra == "doc" and ( python_version == '3.7')
45
+ Requires-Dist: scikit-learn==1.3.1 ; extra == "doc" and ( python_version > '3.7')
46
+ Requires-Dist: Sphinx==7.1.2 ; extra == "doc" and ( python_version <= '3.9')
47
+ Requires-Dist: Sphinx==7.2.6 ; extra == "doc" and ( python_version >= '3.9')
48
+ Requires-Dist: sphinx-autobuild==2021.3.14 ; extra == "doc"
49
+ Requires-Dist: sphinx-autodoc-typehints==1.24.0 ; extra == "doc"
50
+ Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
51
+ Requires-Dist: sphinx-gallery==0.14.0 ; extra == "doc"
52
+ Requires-Dist: sphinx-notfound-page==1.0.0 ; extra == "doc"
53
+ Requires-Dist: sphinxcontrib-websupport==1.2.4 ; extra == "doc" and ( python_version <= '3.9')
54
+ Requires-Dist: sphinxcontrib-websupport==1.2.5 ; extra == "doc" and ( python_version <= '3.7')
55
+ Requires-Dist: SRTM.py ; extra == "doc"
56
+ Requires-Dist: utm ; extra == "doc"
57
+ Requires-Dist: scikit-rf ; extra == "doc"
58
+ Requires-Dist: openpyxl==3.1.2 ; extra == "doc"
59
+ Requires-Dist: sphinx_design ; extra == "doc"
60
+ Requires-Dist: sphinx_jinja ; extra == "doc"
61
+ Requires-Dist: imageio ; extra == "full"
62
+ Requires-Dist: matplotlib==3.5.3 ; extra == "full" and ( python_version == '3.7')
63
+ Requires-Dist: matplotlib==3.7.3 ; extra == "full" and ( python_version == '3.8')
64
+ Requires-Dist: matplotlib==3.8.2 ; extra == "full" and ( python_version > '3.8')
65
+ Requires-Dist: numpy==1.21.6 ; extra == "full" and ( python_version <= '3.9')
66
+ Requires-Dist: numpy==1.26.0 ; extra == "full" and ( python_version > '3.9')
67
+ Requires-Dist: pandas==1.3.5 ; extra == "full" and ( python_version == '3.7')
68
+ Requires-Dist: pandas==2.0.3 ; extra == "full" and ( python_version == '3.9')
69
+ Requires-Dist: pandas==2.1.1 ; extra == "full" and ( python_version > '3.9')
70
+ Requires-Dist: osmnx ; extra == "full"
71
+ Requires-Dist: pyvista==0.42.2 ; extra == "full" and ( python_version > '3.7')
72
+ Requires-Dist: pyvista==0.38.0 ; extra == "full" and ( python_version <= '3.7')
73
+ Requires-Dist: vtk==9.2.6 ; extra == "full"
74
+ Requires-Dist: SRTM.py ; extra == "full"
75
+ Requires-Dist: utm ; extra == "full"
76
+ Requires-Dist: scikit-rf ; extra == "full"
77
+ Requires-Dist: openpyxl==3.1.2 ; extra == "full"
78
+ Requires-Dist: ansys-edb-core ; extra == "grpc"
79
+ Requires-Dist: ipython==8.13.0 ; extra == "tests" and ( python_version < '3.9')
80
+ Requires-Dist: ipython==8.17.2 ; extra == "tests" and ( python_version >= '3.9')
81
+ Requires-Dist: imageio==2.31.5 ; extra == "tests"
82
+ Requires-Dist: joblib==1.3.2 ; extra == "tests"
83
+ Requires-Dist: matplotlib==3.5.3 ; extra == "tests" and ( python_version == '3.7')
84
+ Requires-Dist: matplotlib==3.7.3 ; extra == "tests" and ( python_version == '3.8')
85
+ Requires-Dist: matplotlib==3.8.2 ; extra == "tests" and ( python_version > '3.8')
86
+ Requires-Dist: numpy==1.21.6 ; extra == "tests" and ( python_version <= '3.9')
87
+ Requires-Dist: numpy==1.26.0 ; extra == "tests" and ( python_version > '3.9')
88
+ Requires-Dist: mock ; extra == "tests"
89
+ Requires-Dist: openpyxl==3.1.2 ; extra == "tests"
90
+ Requires-Dist: osmnx ; extra == "tests"
91
+ Requires-Dist: pandas==1.3.5 ; extra == "tests" and ( python_version == '3.7')
92
+ Requires-Dist: pandas==2.0.3 ; extra == "tests" and ( python_version == '3.8')
93
+ Requires-Dist: pandas==2.1.1 ; extra == "tests" and ( python_version > '3.9')
94
+ Requires-Dist: pytest==7.4.3 ; extra == "tests"
95
+ Requires-Dist: pytest-cov==4.1.0 ; extra == "tests"
96
+ Requires-Dist: pytest-xdist==3.3.1 ; extra == "tests"
97
+ Requires-Dist: pyvista==0.38.0 ; extra == "tests" and ( python_version <= '3.7')
98
+ Requires-Dist: pyvista==0.42.2 ; extra == "tests" and ( python_version > '3.7')
99
+ Requires-Dist: scikit-learn==1.3.0 ; extra == "tests" and ( python_version == '3.7')
100
+ Requires-Dist: scikit-learn==1.3.1 ; extra == "tests" and ( python_version > '3.7')
101
+ Requires-Dist: scikit-rf==0.31.0 ; extra == "tests"
102
+ Requires-Dist: SRTM.py ; extra == "tests"
103
+ Requires-Dist: utm ; extra == "tests"
104
+ Provides-Extra: doc
105
+ Provides-Extra: full
106
+ Provides-Extra: grpc
107
+ Provides-Extra: tests
108
+
109
+ <!-- -->
110
+ <a name="readme-top"></a>
111
+ <!--
112
+ *** PyEDB README
113
+ -->
114
+
115
+
116
+ # PyEDB
117
+
118
+ [![PyAnsys](https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC)](https://docs.pyansys.com/)
119
+ [![PythonVersion](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/downloads/)
120
+ [![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
121
+
122
+ ## What is PyEDB?
123
+
124
+ PyEDB is Python client library for processing complex and large layout designs in the
125
+ Ansys Electronics Database (EDB) format, which stores information describing designs for
126
+ [Ansys Electronics Desktop](https://www.ansys.com/products/electronics) (AEDT).
127
+
128
+ While you can also use the [PyEDB-Core](https://github.com/ansys/pyedb-core) API to automate EDB workflows,
129
+ using it requires a deep comprehension of the EDB architecture and class inheritances, resulting in
130
+ a learning curve not always compatible with daily work loads.
131
+
132
+ To speed up EDB adoption and improve user experience, PyEDB provides high-level classes that call
133
+ the PyEDB-Core API. Thanks to PyEDB's application-oriented architecture, you can start using EDB
134
+ faster and easier.
135
+
136
+ ## About PyEDB
137
+
138
+ PyEDB is part of the larger [PyAnsys](https://docs.pyansys.com "PyAnsys") effort to facilitate the use
139
+ of Ansys technologies directly from Python. It is intended to consolidate and extend all existing
140
+ functionalities around scripting for EDB to allow reuse of existing code, sharing of best practices,
141
+ and increased collaboration.
142
+
143
+ PyEDB includes functionality for interacting with Ansys electromagnetic simulators: : HFSS,
144
+ HFSS 3D Layout, Icepak, Maxwell, Q3D, and SIwave.
145
+
146
+ ## What is EDB?
147
+
148
+ EDB provides a proprietary database file format (AEDB) for efficient and fast layout design
149
+ handling and processing for building ready-to-solve projects. EDB addresses signal integrity
150
+ (SI), power integrity (PI-DC), and electro-thermal work flows. You can import an AEDB file
151
+ into AEDT to modify the layout, assign materials, and define ports, simulations, and constraints.
152
+ You can then launch any of the Ansys electromagnetic simulators.
153
+
154
+ EDB runs as a standalone API, which means that you don't need to open a user interface (UI).
155
+ Because EDB opens the ``aedb`` folder for directly querying and manipulating layout design in
156
+ memory, it provides the fastest and most efficient way to handle a large and complex layout.
157
+
158
+ You can also parse an AEDB file from a command line in batch in an Ansys electromagnetic simulator
159
+ like HFSS or SIwave. Thus, you can deploy completely non-graphical flows, from layout
160
+ translation through simulatiom results.
161
+
162
+ Additionally, you can use PyAEDT to import an AEDB file into AEDT to view a project,
163
+ combine 3D designs, or perform simulation postprocessing. EDB also supports 3D component models.
164
+
165
+ ## Documentation and issues
166
+
167
+ Documentation for the latest stable release of PyEDB is hosted at
168
+ [PyEDB documentation](https://edb.docs.pyansys.com/version/stable/index.html).
169
+ The documentation has five sections:
170
+
171
+ - [Getting started](https://edb.docs.pyansys.com/version/version/stable/getting_started/index.html): Describes
172
+ how to install PyEDB in user mode.
173
+ - [User guide](https://edb.docs.pyansys.com/version/version/stable/user_guide/index.html): Describes how to
174
+ use PyEDB.
175
+ - [API reference](https://edb.docs.pyansys.com/version/version/stable/api/index.html): Provides API member descriptions
176
+ and usage examples.
177
+ - [Examples](https://edb.docs.pyansys.com/version/version/stable/examples/index.html): Provides examples showing
178
+ end-to-end workflows for using PyEDB.
179
+ - [Contribute](https://edb.docs.pyansys.com/version/version/stable/contribute.html): Describes how to install
180
+ PyEDB in developer mode and how to contribute to this PyAnsys library.
181
+
182
+ In the upper right corner of the documentation's title bar, there is an option
183
+ for switching from viewing the documentation for the latest stable release
184
+ to viewing the documentation for the development version or previously
185
+ released versions.
186
+
187
+ On the [PyEDB Issues](https://github.com/ansys/pyedb/issues) page, you can
188
+ create issues to report bugs and request new features. On the
189
+ [PyEDB Discussions](https://github.com/ansys/pyedb/discussions) page or the
190
+ [Discussions](https://discuss.ansys.com/) page on the Ansys Developer portal,
191
+ you can post questions, share ideas, and get community feedback.
192
+
193
+ To reach the project support team, email [pyansys.core@ansys.com](mailto:pyansys.core@ansys.com).
194
+
195
+ ## License
196
+
197
+ PyEDB is licensed under the [MIT License](https://github.com/ansys/pyedb/blob/main/LICENSE).
198
+
199
+ PyEDB makes no commercial claim over Ansys whatsoever. This library extends the
200
+ functionality of EDB by adding a Python interface to PyEDB-Core without changing the
201
+ core behavior or license of the original software. The use of PyEDB requires a
202
+ legally licensed local copy of AEDT.
203
+
204
+ To get a copy of AEDT, see the [Ansys Electronics](https://www.ansys.com/products/electronics)
205
+ page on the Ansys website.
206
+
207
+ <p style="text-align: right;"> <a href="#readme-top">back to top</a> </p>
208
+
@@ -0,0 +1,128 @@
1
+ pyedb/__init__.py,sha256=rtO4iZ8IwsN4cyNqLgQtEU7fV65XVO8BKOJMTd1tJuY,358
2
+ pyedb/edb_logger.py,sha256=lnqdvkr2Uwo0WmnFiMWUcQMPrRuIXzPeU6hVTej_c2Q,13318
3
+ pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ pyedb/dotnet/clr_module.py,sha256=W4_6KTrh9GFV3Lp3tkozFBaEzNCD-trQgCAt0qlGbUM,3406
5
+ pyedb/dotnet/edb.py,sha256=-VMK_G8-CSbVNh-AXhxIFgl_ki72VBgM-fQzMaPqwBg,167905
6
+ pyedb/dotnet/application/Variables.py,sha256=1wi3BQLUcZ7iEONVTqSonUM4wJOnzkkmETMfRujpzv8,77888
7
+ pyedb/dotnet/application/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ pyedb/dotnet/edb_core/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
9
+ pyedb/dotnet/edb_core/components.py,sha256=QBDJwxV5A26d5G5jY7pd7oZdQ5i4n7OAns4cevsKli0,101864
10
+ pyedb/dotnet/edb_core/configuration.py,sha256=86vRh977CSKKIDu6k39yvqAo1J9TyE3e8IewtQqgpLM,17937
11
+ pyedb/dotnet/edb_core/general.py,sha256=uIDIEJK2LwQi805lIp-XKSTXWm7cV8kml3CxUauvdEU,3572
12
+ pyedb/dotnet/edb_core/hfss.py,sha256=qABg6L-y__r3OdcTDupdmgcCXyjO9Jo4nE_9d28BwsE,67178
13
+ pyedb/dotnet/edb_core/layout.py,sha256=WOY8i7odca7W7_s_KcZGXIiVZRjNCVmFzD_gE2f_CcU,46721
14
+ pyedb/dotnet/edb_core/layout_validation.py,sha256=6SHnC9rjBSAgqwReZhc7Yj5t1oW30NFIxYbs6Cu3P2o,10472
15
+ pyedb/dotnet/edb_core/materials.py,sha256=QZhKLTpgM5HmyvX3sUXf52XzCvnyxYJj194eNB07VCY,37810
16
+ pyedb/dotnet/edb_core/net_class.py,sha256=FScbzriu-cZcay3lm8LDt8wHBCQ8LhXM9CFTzf1DuLs,10703
17
+ pyedb/dotnet/edb_core/nets.py,sha256=cEq9xsX0WsdO2Kfyi0yrDJC30LWS-A-lZ6XZQXawskQ,42655
18
+ pyedb/dotnet/edb_core/padstack.py,sha256=nhn1a8uxE6fb_s6B8PHYcfpMZA78lMtruAtKRwOXIX4,51415
19
+ pyedb/dotnet/edb_core/siwave.py,sha256=m_HSYfccdpiE1mXWZKIWUErpYTd5kf9zufUOIDVB3PE,59573
20
+ pyedb/dotnet/edb_core/stackup.py,sha256=OEO-p5bK9YkJYxUs_TE_UJCcMOhZKv2b86MI9cBZXi8,112250
21
+ pyedb/dotnet/edb_core/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ pyedb/dotnet/edb_core/cell/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ pyedb/dotnet/edb_core/cell/hierarchy/model.py,sha256=vS0iGV7LXrdB0Mpox_I4-eJf5igupXRZZ4nahaDBrsM,1761
24
+ pyedb/dotnet/edb_core/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ pyedb/dotnet/edb_core/definition/component_def.py,sha256=QkxAgTX1c4Gx1EJK-633aJw8y7EjwDqVE66iGJKOy0s,5276
26
+ pyedb/dotnet/edb_core/definition/component_model.py,sha256=Cq8JZgvqM3CWyBLswXis9hCQUS_HreamkUQt0lr703Y,884
27
+ pyedb/dotnet/edb_core/definition/definition_obj.py,sha256=Uge_J9lHpcKOuLMHRk7XrSL0T7-zr_2wot2nAlC7KPc,486
28
+ pyedb/dotnet/edb_core/definition/definitions.py,sha256=4eYWn-ba3eT8dyB6jyWE4Os6qOWseLttAJEYJHzQPzM,349
29
+ pyedb/dotnet/edb_core/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ pyedb/dotnet/edb_core/dotnet/database.py,sha256=TDn1vBhwWlMgqlfpBeAMdH4bFdXe_-xna18WjFNU2U8,36443
31
+ pyedb/dotnet/edb_core/dotnet/layout.py,sha256=scvnzV0Of02S2m0GJYJYjBTpoe7Gqh8kNBzkmrMVCmc,7750
32
+ pyedb/dotnet/edb_core/dotnet/primitive.py,sha256=vgJj6g-akN_cu3odmMzGZieWWX2a5UAlljv_8b5BcPY,47166
33
+ pyedb/dotnet/edb_core/edb_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ pyedb/dotnet/edb_core/edb_data/components_data.py,sha256=QLPlrATlrv_mdhrnIM4yQUh6_nIx_GM5blU-l6vxg9I,30613
35
+ pyedb/dotnet/edb_core/edb_data/connectable.py,sha256=l9ztofnYhRM8JOoWpNjCddiwchAWBZNqzsjQqsMb6q4,3111
36
+ pyedb/dotnet/edb_core/edb_data/control_file.py,sha256=-5M4GvOod9udMMYF9k1vhg1miKOTd-iZbJKBt6RkFs4,47271
37
+ pyedb/dotnet/edb_core/edb_data/design_options.py,sha256=8Vqfvpxcvq2-Jtams2l3_kRVp724hVsBUkqsh1Gd1xM,902
38
+ pyedb/dotnet/edb_core/edb_data/edbvalue.py,sha256=XJavkPx6XKR8GIEkJrRypbJ3UM8BP81aJohlbYXCdC4,822
39
+ pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py,sha256=xcK5ykIRdei3EQqDlmO5Hx8k9tgm9OrZEz7GLWYcq-I,11880
40
+ pyedb/dotnet/edb_core/edb_data/hfss_simulation_setup_data.py,sha256=SsuBAtWZ1rrzGTNgFv_f2XKUObBKgDbiBn8xcn5vnxA,47079
41
+ pyedb/dotnet/edb_core/edb_data/layer_data.py,sha256=TS6ckQr_KYES9x1zdr-vJWcOZANybw3dl8CNUcarWRg,20466
42
+ pyedb/dotnet/edb_core/edb_data/nets_data.py,sha256=sYNFerWSiXSyFIU8fZnWcGRDx_MxeeNbgZh1salTRWY,8450
43
+ pyedb/dotnet/edb_core/edb_data/obj_base.py,sha256=bQCX3q8bY4ThU3ZbAC7SYE7kyLdazci7QyLYC9vWFaU,527
44
+ pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=mL4DKlo_htnQEedMZOtOF-PEj1aNFaslA_hJRxPL5J0,76914
45
+ pyedb/dotnet/edb_core/edb_data/ports.py,sha256=x7FO0GLrfR0vmK1XpOlLYpY_WOl-BTHLpiHnuFGylxA,8069
46
+ pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=PrpRibZ2UA3o16jQ17y9sMtZq89cXq-DuFrSOqIvL3k,45612
47
+ pyedb/dotnet/edb_core/edb_data/simulation_configuration.py,sha256=RxnGo9PcMvtwf4TAZXkjcKsd6SkwBlnvXgfY503tmVk,98813
48
+ pyedb/dotnet/edb_core/edb_data/simulation_setup.py,sha256=RPF5cOcp-OBrO4roTOzpzdIQLIWCU1EqwtDiiy9uYk4,22813
49
+ pyedb/dotnet/edb_core/edb_data/siwave_simulation_setup_data.py,sha256=yoAUbgxfNeqvC-gdgje28tyWjPSthJTIqyx68kkrfxI,41001
50
+ pyedb/dotnet/edb_core/edb_data/sources.py,sha256=vW5Ls0-v22ltzfc4j63TGVRJrafbhTWvVcmCJ_bj4Os,13829
51
+ pyedb/dotnet/edb_core/edb_data/terminals.py,sha256=VK3UtLic3NpU68gRNBGKnjTPUilrScrQMuPuaqBkV8M,24133
52
+ pyedb/dotnet/edb_core/edb_data/utilities.py,sha256=BsbrubYYotF4VVcYmyHwR7t9EObwQZPsE7vOVqv5xPo,3775
53
+ pyedb/dotnet/edb_core/edb_data/variables.py,sha256=PElS4FaAT2dXnJi9mfVYOK2KvNcya36TaS_OhWwkKNw,2346
54
+ pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ pyedb/generic/constants.py,sha256=QSBiwrCM9KmYHFvaSVV1PhwpG5hksFLfSzndu3ht4Rg,27802
56
+ pyedb/generic/data_handlers.py,sha256=KALZ5C-QkHxgZLDUYqBsBlPfqtT7Z4FboRVmFWzfo7g,7173
57
+ pyedb/generic/design_types.py,sha256=MaOkFZIcOTt2-a4GdgFA3PVRUw8FJTaRzbLOanJbdAQ,3020
58
+ pyedb/generic/filesystem.py,sha256=sbZIHGlCTAyhDO5oDWFhJPGnyzlgvqaLt7saxeKqzsQ,3763
59
+ pyedb/generic/general_methods.py,sha256=-NAONtEptUAFRLgRh7sto9MkyroOAsl2gx70-LMgjiM,46403
60
+ pyedb/generic/plot.py,sha256=gX4J4iY53Xk0rQL3OWvzWmM7vyAhLcsG0ATVrbI_pbY,61738
61
+ pyedb/generic/process.py,sha256=ZO7B0JoTAW9AZr3TI_a3pCAuU15ljAta6wAvWh6k_ss,11103
62
+ pyedb/generic/settings.py,sha256=_jBkDsbws4kVIo2zCBh_K9eJi1QUnJk67-jZuLhPME4,7523
63
+ pyedb/ipc2581/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ pyedb/ipc2581/history_record.py,sha256=uUYLclSBppFGk6kIVhs_l6UkEQBOk2C-hG6HCi0Nxlo,1585
65
+ pyedb/ipc2581/ipc2581.py,sha256=A5skFqvtY98z_OAEuCkWF7T7q0QIBVPe9zk5fdMTVz0,21531
66
+ pyedb/ipc2581/logistic_header.py,sha256=L28F0964fCIlX9tLT-Dq9Qv-liX4UN8UyIm2aDlTQw0,938
67
+ pyedb/ipc2581/bom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ pyedb/ipc2581/bom/bom.py,sha256=3kiSio6RcLs_DvpFmF1aCcMAFOKMFB9vWX9T2H03Mlk,699
69
+ pyedb/ipc2581/bom/bom_item.py,sha256=quW9oK3Ibu8Z9We-AvAfXWHHY6Ybbv56zMjSAMn86SI,1240
70
+ pyedb/ipc2581/bom/characteristics.py,sha256=4zUK7CuNhdxP4209xfRHyqjamL0-0HqavtANKWNd3AM,2175
71
+ pyedb/ipc2581/bom/refdes.py,sha256=6FJPovCCbnckxz_eXd0KAae7Bv0mNtyEgJ3UyeNOB1E,507
72
+ pyedb/ipc2581/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ pyedb/ipc2581/content/color.py,sha256=rFs5F3aLFf0oUdNG5lEkywDnqYokyWLsChbSdakM7xE,729
74
+ pyedb/ipc2581/content/content.py,sha256=C_5bvxRJzzx_L5kZAGSJfKQak1vZAd5jri4Ff0iUi-c,2033
75
+ pyedb/ipc2581/content/dictionary_color.py,sha256=Hh9-99rtYYMUOaEgCyTQbAqy_xAa2jxLXOp_3cvKoew,898
76
+ pyedb/ipc2581/content/dictionary_fill.py,sha256=K2bfyJ28tM1vdCzDC8iba8zPqoJ_CdLUjXsxwqSBmFs,872
77
+ pyedb/ipc2581/content/dictionary_line.py,sha256=t_FG9klRao3YvjZ7Vhj1EwypFc9cOz92ScVS56k6yNg,988
78
+ pyedb/ipc2581/content/entry_color.py,sha256=0DRbXrCLdNCANsaNYII1YPuxPa8Mvz-kbliQIpgaZVA,392
79
+ pyedb/ipc2581/content/entry_line.py,sha256=q89xJREj6qzDelvA7oWEcNu7jUz5qxeemXIUre2bkAc,533
80
+ pyedb/ipc2581/content/fill.py,sha256=fGUBrq5wuwAT99OzqEUs8N7XZvIxe1vfzCLELrjK0K8,497
81
+ pyedb/ipc2581/content/layer_ref.py,sha256=KTZeFEfbgtnhv8byC2m4-AkbSirzjWu8SSlB_DZtJ60,273
82
+ pyedb/ipc2581/content/standard_geometries_dictionary.py,sha256=hMkVatqoRwu4mdCMDdPGyntioiziR11PqipEC4zKzME,2777
83
+ pyedb/ipc2581/ecad/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ pyedb/ipc2581/ecad/cad_header.py,sha256=g1PsiP7YFcx_15ea-tkuJ74OAzfGWoRPgGkLFJ5-dPE,989
85
+ pyedb/ipc2581/ecad/ecad.py,sha256=y3VqN7unbbVDEjEBROSF87PfdYCdYv0MyIKJYVXLM60,643
86
+ pyedb/ipc2581/ecad/spec.py,sha256=_rH06H6JUzS_-lB5dqD0X-YSpfQrEuwVP39rItAlYKM,1961
87
+ pyedb/ipc2581/ecad/cad_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ pyedb/ipc2581/ecad/cad_data/assembly_drawing.py,sha256=Bv86KJ_qkbpKSmFslpoWpYYQ7kHn6gdZm66jjfcgIeU,1146
89
+ pyedb/ipc2581/ecad/cad_data/cad_data.py,sha256=IdEhh2L04C32q8zeWgvNqQa2-gLGBOpfDp7m3GHmRK4,1251
90
+ pyedb/ipc2581/ecad/cad_data/component.py,sha256=r7hUIwCwGHdA78PDRutWpBjU3bK4MAhr9CYAY-1eQxM,1474
91
+ pyedb/ipc2581/ecad/cad_data/drill.py,sha256=E0q4-tVKbKH5XjCKFnWHpZv90J-07u7FIT80UWSzrkU,929
92
+ pyedb/ipc2581/ecad/cad_data/feature.py,sha256=CcdlALX2INoMv5pQYyk6O8bE58mFVpU3VLh7uvqWpf0,1869
93
+ pyedb/ipc2581/ecad/cad_data/layer.py,sha256=YknaYGBmu8An46_TXuBPkIxxUUDROnJn8UYiu6eBcZI,1116
94
+ pyedb/ipc2581/ecad/cad_data/layer_feature.py,sha256=p70nRyxJVpEdqHqz0CV9WbJGvcyVVufYcC-ogVL5Emo,7432
95
+ pyedb/ipc2581/ecad/cad_data/logical_net.py,sha256=zn-D8WwDYKp9zG8fKfCkqW-A4SkOmOBnNxiepfnv4TE,888
96
+ pyedb/ipc2581/ecad/cad_data/outline.py,sha256=5X2su9lAhqrxnqhvCTZPYxu3HO5Yl9U6KGcLubkLClA,1043
97
+ pyedb/ipc2581/ecad/cad_data/package.py,sha256=2_ORw5Lj10_CE9jN8ojT4UyLoOCgStWJERcm0-uVdGY,4444
98
+ pyedb/ipc2581/ecad/cad_data/padstack_def.py,sha256=7SLDE0c9P6VsQGjV14D4f9ujbm1Ctytli7cJygVdXDI,1381
99
+ pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py,sha256=dTsViyTwFcxXYOTiZJ4pwHiNmA8dLwBDxmqCVOpaBWs,850
100
+ pyedb/ipc2581/ecad/cad_data/padstack_instance.py,sha256=5klGmafFZJ6NiDDOAMdCjFfveLpyvwzUHNByl0MDWxQ,2712
101
+ pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py,sha256=bIQG9E_h8AxxFleNi8ikDWF3vP8w1Eyenfvt3NUuDX0,860
102
+ pyedb/ipc2581/ecad/cad_data/path.py,sha256=SUwR2ZlFNCxRTXkeucOjJ50ApXlWhHJBgfhSVGwd2gg,3890
103
+ pyedb/ipc2581/ecad/cad_data/phy_net.py,sha256=hKsjGC5EpLMuo_KYqOwLsFI01nRH-in0wxwQLmicXY0,2486
104
+ pyedb/ipc2581/ecad/cad_data/pin.py,sha256=aJ1GtAE0dTYMTunkAuUKnCaE8FWgcEFnd8zK1A1gkk4,970
105
+ pyedb/ipc2581/ecad/cad_data/polygon.py,sha256=vkyOF3giLu0U_gQfPu4wr37-ZnhZZBALFATagCA1bXU,7791
106
+ pyedb/ipc2581/ecad/cad_data/profile.py,sha256=sigfbsR7Xr5qAGBP79gJ4g4eB4aXUeFWUbrDY9Ov2DQ,1627
107
+ pyedb/ipc2581/ecad/cad_data/stackup.py,sha256=RXV2szrjjuSPuQZZkpkDjh368SZp6MzrDXaNcd3hsXE,1120
108
+ pyedb/ipc2581/ecad/cad_data/stackup_group.py,sha256=PpgGFI8wr13MnqDQlgS5HWxWHgmuIKSH2P3tRroSVnY,1563
109
+ pyedb/ipc2581/ecad/cad_data/stackup_layer.py,sha256=QWQBm1yN4n_RlJSqB1uF6hLxod7pgsSrEJ1WT9wQ70o,816
110
+ pyedb/ipc2581/ecad/cad_data/step.py,sha256=CMmDpP_QFcQZ0V2YkN19-FvWam5HAbbobb7G6PBbqK4,11436
111
+ pyedb/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ pyedb/misc/aedtlib_personalib_install.py,sha256=bm3XHB3IDcF183UIUILPQr_5xeTgpMuklTdldUU7dKs,605
113
+ pyedb/misc/downloads.py,sha256=AB4PfylbTmK8CgsyhwxSHd5WHYzC-N02VoZDjxcu1Ek,11069
114
+ pyedb/misc/misc.py,sha256=lvU4n49FWGQhdf3rKinKiBsDcREnG_34qkOH9FDD4o0,2161
115
+ pyedb/misc/pyedb.runtimeconfig.json,sha256=2xof-Vl0hY2VOs1KkMSReTMZACsZhcmPmyHXukfb-oY,301
116
+ pyedb/misc/utilities.py,sha256=w8mSGtgBlakcdOtWyP_NY0hUu_hxannOQOBvVxn02Fc,465
117
+ pyedb/misc/siw_feature_config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
+ pyedb/misc/siw_feature_config/emc_rule_checker_settings.py,sha256=_wZJE9oDMucuxQhdkap2cgbJvkWeu82WtFV6FEhT01Y,5330
119
+ pyedb/misc/siw_feature_config/emc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
+ pyedb/misc/siw_feature_config/emc/component_tags.py,sha256=s1MTxuUuVH3lVGMBK2l9rK_SEUXhrLzLzbgsTLuM1Uc,1579
121
+ pyedb/misc/siw_feature_config/emc/net_tags.py,sha256=bJgxkc6ycUCz_djrIkz8AqLoLv5pja_fkipFpSZZ3kA,1040
122
+ pyedb/misc/siw_feature_config/emc/tag_library.py,sha256=SOJx5KJAXFEpHzKkbunR7fy7N8etZN9kECFwcCQ1bp4,1575
123
+ pyedb/misc/siw_feature_config/emc/xml_generic.py,sha256=o5jMyfDJn3mzNUdzpPUFbexBVPc-Wu6XMf2ModMRyg0,2530
124
+ pyedb/modeler/geometry_operators.py,sha256=LDqEaeerw9H8Yva-SJhX3Afdni08OciO9t5G0c_tdqs,66820
125
+ pyedb-0.2.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
126
+ pyedb-0.2.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
127
+ pyedb-0.2.0.dist-info/METADATA,sha256=xDiWCZldsxqNy65BPBJT_JExSz_jacieyEAEaCrGpKk,11740
128
+ pyedb-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: flit 3.9.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any