Metadata-Version: 2.4
Name: e3series
Version: 0.2.0
Summary: Python wrapper and utilities for the E3.series COM interface.
Project-URL: Homepage, https://www.zuken.com/e3series
Project-URL: Issues, https://support.zuken.com/global/
Author-email: Zuken E3 GmbH <e3-support@de.zuken.com>
License-File: LICENSE
Keywords: CAE,E3.series,E3.series COM interface,ECAD,Electrical CAD,Electrical CAD scripting,Electrical cabinet,Electrical engineering,Formboard,Harness,Zuken
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
Requires-Python: >=3.9
Requires-Dist: psutil>=5.7.3
Requires-Dist: pywin32>=306
Requires-Dist: typing-extensions>=4.13.1
Description-Content-Type: text/markdown

# Python wrapper for the E3.series COM interface

python e3series is a wrapper library for the E3.series COM interface.
The library enhances the automatic code completion and static program verification for python programs that automate E3.series.

This library requires a working instance of the software Zuken E3.series.

## Getting Started

Install the library via pip:
```
pip install e3series
```

Use the library:
```python
import e3series as e3

app = e3.Application()
app.PutInfo(0, "hello, world!")
```

