Metadata-Version: 2.1
Name: ONVIFCameraControl
Version: 1.0.5
Summary: Simple camera controls.
Home-page: https://github.com/MikhaelMIEM/ONVIFCameraControl
Author: Mikhael
Author-email: mikhail-miem@yandex.ru
License: UNKNOWN
Description: # ONVIFCameraControl
        Python module for some basic Onvif camera control actions. List of available functions watch in [code](github.com/MikhaelMIEM/ONVIFCameraControl/ONVIFCameraControl/ONVIFCameraControl.py)
        # Installation
        ```sh
        $ python3.7 -m pip install ONVIFCameraControl
        ```
        # Usage
        ```sh
        from ONVIFCameraControl import ONVIFCameraControl
        from time import sleep
        
        cam = ONVIFCameraControl(("172.18.200.53", 80), "admin", "password")
        
        ptz_velocity_vector = (1, 1, 1)
        cam.move_continuous(ptz_velocity_vector)  
        sleep(1)  
        cam.stop()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
