Metadata-Version: 2.1
Name: poptoma
Version: 0.0.1
Summary: A Python API for Optoma Projectors with web Admin
Home-page: https://github.com/wesleylima/poptoma
Author: Wesley Lima
Author-email: wesley@wesleylima.com
License: UNKNOWN
Description: # poptoma
        
        A Python API for interacting with Optoma projectors through web interface
        
        ## Sample Usage
        ```
        from poptoma import Projector
        
        projector = Projector('192.168.1.420', 'admin', 'admin')
        projector.power_status() # false
        
        
        projector.turn_on()
        projector.power_status() # true
        
        projector.turn_off()
        projector.power_status() # false
        
        ```
        
        The default password is `admin`. PLEASE change this
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
