Metadata-Version: 2.1
Name: sensecam-discovery
Version: 2.2.1
Summary: A package to discover all onvif cameras on your network
Home-page: https://github.com/smartsenselab/sensecam-discovery
Author: Ricardo Barbosa Filho (Smart Sense Laboratory)
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 :: OS Independent
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: onvif-zeep (==0.2.12)
Requires-Dist: WSDiscovery (==2.0.0)
Requires-Dist: netifaces (==0.10.9)

# SenseCam Discovery - Camera Discovery Package

SenseCam Discovery is a Python tool that is used to discover all Onvif cameras available on a specific network. The purpose is to easily provide an accessible way to find out which IP each camera has, and then use this IP to get all information for this camera, such as hostname, manufacturer, model, firmware version, MAC address, hardware ID, all resolutions available, frame rate range, date, time and if it’s PTZ or not.

## Installation
Install the package through pip:
````
pip install sensecam-discovery
````
## Execution
To execute the command that discover all cameras:
````
import sensecam_discovery
sensecam_discovery.discover()
````
To execute the comand that shows information about the cameras:
````
from sensecam_discovery import Camera
camera = Camera(camera_ip, user, password)
````

