Metadata-Version: 2.1
Name: pysecspy
Version: 1.3.2
Summary: Python Wrapper for SecuritySpy API
Home-page: https://github.com/briis/pysecspy
Author: Bjarne Riis
Author-email: bjarne@briis.com
License: MIT
Keywords: Home Assistant,Python,SecuritySpy,Surveilance,Bensoftware
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Python Wrapper for the SecuritySpy API

![Latest PyPI version](https://img.shields.io/pypi/v/pysecspy) ![Supported Python](https://img.shields.io/pypi/pyversions/pysecspy)

This module communicates with a [SecuritySpy Video Server](https://www.bensoftware.com/securityspy/) and can retrieve and set data for:

* Cameras
* Motion Sensors
* Motion Events

It will require the Webserver component activated on SecuritySpy, and a Username, Password, IP Address and Port number for the Webserver.

See `devicelist.py` and `eventlist.py` for examples on how to use this wrapper. And before doing so, edit each file and insert your SecuritySpy IP Adress, Port Number, Username and Password in the designated variables.

```python
USERNAME = "YOUR_USERNAME"
PASSWORD = "YOUR_PASSWORD"
IPADDRESS = "YOUR_IP_ADDRESS"
PORT = 8000
```

Change all the items in CAPITAL letters to your personal settings.


