├── .gitignore ├── .isort.cfg ├── .travis.yml ├── LICENSE ├── README.md ├── os1 ├── __init__.py ├── core.py ├── packet.py ├── server.py └── utils.py ├── setup.py └── test ├── __init__.py ├── packets └── ousteros-image-prod-aries-v1.6.0-20180816163617_v1.6.0.bin ├── test_core.py ├── test_packet.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/ 3 | build/ 4 | venv/ 5 | -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/README.md -------------------------------------------------------------------------------- /os1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/os1/__init__.py -------------------------------------------------------------------------------- /os1/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/os1/core.py -------------------------------------------------------------------------------- /os1/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/os1/packet.py -------------------------------------------------------------------------------- /os1/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/os1/server.py -------------------------------------------------------------------------------- /os1/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/os1/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/packets/ousteros-image-prod-aries-v1.6.0-20180816163617_v1.6.0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/test/packets/ousteros-image-prod-aries-v1.6.0-20180816163617_v1.6.0.bin -------------------------------------------------------------------------------- /test/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/test/test_core.py -------------------------------------------------------------------------------- /test/test_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/test/test_packet.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsiemens/ouster-python/HEAD/test/utils.py --------------------------------------------------------------------------------