Metadata-Version: 2.1
Name: camera-discovery
Version: 1.0.8
Summary: A package to discover all onvif cameras on your network
Home-page: https://github.com/ricardobf/camera_discovery
Author: Ricardo Barbosa Filho
Author-email: ricardob@dcc.ufmg.br
License: UNKNOWN
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: onvif-zeep (==0.2.12)
Requires-Dist: WSDiscovery (==0.2)
Requires-Dist: netifaces (==0.10.7)

# Camera Discovery
This is a package to discover all onvif devices on your network.
## Installation
Install the package through pip:
````
pip install camera-discovery
````
## Execution
To execute the command that discover all cameras:
````
from camera_discovery import CameraDiscovery
CameraDiscovery.ws_discovery()
````
To execute the comand that shows information about the cameras:
from camera_discovery import CameraONVIF
Class = CameraONVIF(camera_ip, user, password)

