Metadata-Version: 1.1
Name: panonoctl
Version: 0.4.2
Summary: Python API to interact with the PANONO 360-camera
Home-page: https://github.com/florianl/panonoctl/
Author: Florian Lehner
Author-email: dev@der-flo.net
License: Apache License 2.0
Download-URL: https://github.com/florianl/panonoctl/archive/master.tar.gz
Description: panonoctl
        ========
        
        Python API to interact with the [PANONO](https://www.panono.com) 360-camera.
        
        Install
        =======
        
        To install, execute:
        
        ```
        pip install panonoctl
        ```
        
        Documentation
        =============
        
        ### Connect
        ```python
        >>> from panonoctl import panono
        >>> cam = panono()
        >>> cam.connect()
        ```
        
        ### Authenticate
        ```python
        >>> cam.auth()
        ```
        You need to authenticate. Otherwise your commands will _not_ be executed.
        
        ### Take a Picture
        ```python
        >>> cam.capture()
        ```
        
        ### Get the status of your Panono.
        ```python
        >>> cam.getStatus()
        ```
        Returns a JSON object.
        
        ### Get the options of your Panono.
        ```python
        >>> cam.getOptions()
        ```
        Returns a JSON object.
        
        ### Get the UPFs (Unstitched Panorama Format) from your Panono.
        ```python
        >>> cam.getUpfs()
        ```
        Returns a JSON object.
        
        ### Disconnect
        ```python
        >>> cam.disconnect()
        ```
        
        ### Other Features
        [PANONO](https://www.panono.com) provides more features, than those listed above.
        If you are interested in trying your own commands take a look [here](Experimental.md) for further information.
        
        License
        =======
        
        Copyright 2016 Florian Lehner
        
        Licensed under the Apache License, Version 2.0: [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
        
Keywords: Panono,API 
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
