Python API to interact with the PANONO 360-camera.
To install, execute:
pip install panonoctl
panonoctl is tested under API version 4.23 with firmware 4.2.873.
A very basic script, which downloads all UPFs from your PANONO can be found in getAllUpfs.py.
>>> from panonoctl import panono
>>> cam = panono()
>>> cam.connect()
>>> cam.auth()
You need to authenticate. Otherwise your commands will not be executed.
>>> cam.capture()
>>> cam.getStatus()
Returns a JSON object.
>>> cam.getOptions()
Returns a JSON object.
>>> cam.getUpfs()
Returns a JSON object.
>>> cam.disconnect()
PANONO provides more features, than those listed above. If you are interested in trying your own commands take a look here for further information.
Copyright 2016 Florian Lehner
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0