Metadata-Version: 2.1
Name: pymicropel
Version: 1.0.1
Summary: Python library for communication with Micropel PLC.
Home-page: UNKNOWN
Author: Vladislav Korecky
Author-email: <vladislav@korecky.org>
License: UNKNOWN
Keywords: python,plc,tcp_ip,communication,iot,automation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# pymicropel
Python library for communication with Micropel PLC. 
The library solves everything for the smooth communication of your program with the Micropel PLC. Communication is over TCP/IP, the library handles everything from packet dropping to encryption.

You can install the library using the command
```bash
pip install pymicropel
```

## Deploy to PIP
PIP repository: [https://pypi.org/project/pymicropel/](https://pypi.org/project/pymicropel/)

```bash
pip install setuptools
pip install wheel
pip install twine
python setup.py sdist bdist_wheel
twine upload dist/*
```


