Metadata-Version: 2.4
Name: pypvs
Version: 0.2.3
Summary: A Python package that exposes data and commands for a SunStrong Management PVS6 gateway.
Author-email: Aleksandar Mitev <amitev@sunstrongmanagement.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/SunStrong-Management/pypvs
Project-URL: Issues, https://github.com/SunStrong-Management/pypvs/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Dynamic: license-file

# pypvs

`pypvs` is a Python package that exposes data and commands for a SunStrong Management PVS6 gateway

## Installation

You can install it using pip:
```
pip install pypvs
```

# Running the examples

Initialize virtual environment and install requirements
```
virtualenv venv
. venv/bin/activate
pip install -r requirements.txt
```

Install `pypvs` in development mode
```
pip install -e .
```

Then run the example scripts
```
python examples/simple_fcgi_async.py

python examples/simple_pvs_async.py
```

# Access to the PVS via varserver

Please refer to [LocalAPI documentation](doc/LocalAPI.md) for details on accessing the PVS via varserver.

