Metadata-Version: 2.1
Name: libonvif
Version: 2.0.10
Summary: A python module for communicating with onvif cameras
Author: Stephen Rhodes
Author-email: Stephen Rhodes <sr99622@gmail.com>
Project-URL: Homepage, https://github.com/sr99622/libonvif
Project-URL: Bug Tracker, https://github.com/sr99622/libonvif/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# libonvif

Python enabled library for communicating with onvif devices.

*Please Note*

This python module has dependencies on development libraries which
must be installed prior to installing.  This module is released as 
a source distribution and is compiled on the host.

**Debian or Ubuntu linux**, use the following command
to install the dependencies.

```
sudo apt install cmake libxml2-dev
```

**Windows**, please use Anaconda.  The dependencies may
be installed using the following command under a conda prompt. 
Visual Studio C++ compiler must be installed as well.

```
conda install cmake libxml2 -c conda-forge
```

If successful, install libonvif python module

```
pip install libonvif
```
To uninstall
```
pip uninstall libonvif
```

Copyright (c) 2020, 2023 Stephen Rhodes 

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
