├── .gitignore ├── README.md ├── python27 ├── naoqiconnection.py ├── osx │ ├── run.command │ └── setup_py2app.py ├── setup.py ├── setup_osx.py ├── socket_connection.py └── stk │ ├── __init__.py │ ├── events.py │ ├── logging.py │ ├── runner.py │ └── services.py └── python3 ├── main.py └── stk ├── events.py ├── python27bridge.py └── services.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/README.md -------------------------------------------------------------------------------- /python27/naoqiconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/naoqiconnection.py -------------------------------------------------------------------------------- /python27/osx/run.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/osx/run.command -------------------------------------------------------------------------------- /python27/osx/setup_py2app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/osx/setup_py2app.py -------------------------------------------------------------------------------- /python27/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/setup.py -------------------------------------------------------------------------------- /python27/setup_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/setup_osx.py -------------------------------------------------------------------------------- /python27/socket_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/socket_connection.py -------------------------------------------------------------------------------- /python27/stk/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | STK - A collection of libraries useful for making apps with NAOqi. 3 | """ 4 | -------------------------------------------------------------------------------- /python27/stk/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/stk/events.py -------------------------------------------------------------------------------- /python27/stk/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/stk/logging.py -------------------------------------------------------------------------------- /python27/stk/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/stk/runner.py -------------------------------------------------------------------------------- /python27/stk/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python27/stk/services.py -------------------------------------------------------------------------------- /python3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python3/main.py -------------------------------------------------------------------------------- /python3/stk/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python3/stk/events.py -------------------------------------------------------------------------------- /python3/stk/python27bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python3/stk/python27bridge.py -------------------------------------------------------------------------------- /python3/stk/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jandewit/robot-jumpstarter-python3/HEAD/python3/stk/services.py --------------------------------------------------------------------------------