Python API to interact with network devices using the Open Spherical Camera API.
To install, execute:
pip install pyOSCapi
>>> from pyOSCapi import OSCAPI as OSC
>>> cam = OSC(ip="192.168.0.100", port="80")
>>> cam.connect()The settings to connect differ from manufacturer to manufacturer:
- Bublcam
cam = OSC(ip="192.168.0.100", port="80") - RICO THETA
cam = OSC(ip="192.168.1.1", port="80")
>>> cam.info()>>> cam.disconnect()$ python setup.py nosetests
Copyright 2015 - 2016 Florian Lehner
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0