Metadata-Version: 1.2
Name: PP6RemoteAPI
Version: 0.1.5
Summary: A client for the ProPresenter Remote Websocket API
Home-page: https://github.com/kikeh/PP6RemoteAPI
Author: kikeh
Author-email: heisba@gmail.com
Maintainer: kikeh
License: MIT
Project-URL: Issues, https://github.com/kikeh/PP6RemoteAPI/issues
Description: PP6RemoteAPI Client
        ===================
        
        A client for the ProPresenter6 Remote Websocket API.
        
        Getting started
        ---------------
        
        Install with ``pip``:
        
        .. code:: bash
        
           $ pip install PP6RemoteAPI
        
        Then:
        
        .. code:: python
        
           from PP6RemoteAPI import PP6RemoteAPIClient as PP6
           client = PP6(host='192.168.0.100', port=54321, password='password')
        
           # Get first presentation in the library
           presentation = client.library.presentations[0]
           # Go to the first slide
           presentation.to_slide(0)
        
           # Get first clocks
           clock = client.clocks[0]
           # Set time to 5 minutes
           clock.set_time('00:05:00')
           # Start timer
           clock.start()
        
        Find more information in the repo_
        
        .. _repo: https://github.com/kikeh/PP6RemoteAPI
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
