Metadata-Version: 2.1
Name: s7svrsim
Version: 0.1.1
Summary: type hints for writing S7SvrSim scripts
Home-page: https://github.com/newbienewbie/S7SvrSimTypeHints
Author: newbienewbie
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown


# Type hints for writing S7SvrSim Scripts 

## Install

```bash
pip install s7svrsim
```

## Usage

```python
from s7svrsim import hints

# annotate
S7: hints.S7DB = S7
Logger: hints.Logger = Logger

# now you get IntelliSence
Logger.LogInfo("111111")
```


