├── .gitignore ├── LICENSE ├── README.md ├── examples ├── __init__.py ├── app.py ├── gunicorn-app.sh ├── loopback │ ├── __init__.py │ └── handlers.py ├── multires │ ├── __init__.py │ └── handlers.py ├── requirements.txt ├── rooms │ ├── __init__.py │ ├── handlers.py │ └── models.py ├── static │ ├── img │ │ └── rainbowpox.png │ └── js │ │ └── kurento-utils.js └── views │ ├── index.html │ ├── loopback.html │ ├── multires.html │ └── room.html ├── pykurento ├── __init__.py ├── client.py ├── media.py └── transport.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .pypirc 3 | dist/ 4 | pykurento.egg-info/ 5 | rooms.db 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/app.py -------------------------------------------------------------------------------- /examples/gunicorn-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/gunicorn-app.sh -------------------------------------------------------------------------------- /examples/loopback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/loopback/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/loopback/handlers.py -------------------------------------------------------------------------------- /examples/multires/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/multires/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/multires/handlers.py -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/requirements.txt -------------------------------------------------------------------------------- /examples/rooms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rooms/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/rooms/handlers.py -------------------------------------------------------------------------------- /examples/rooms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/rooms/models.py -------------------------------------------------------------------------------- /examples/static/img/rainbowpox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/static/img/rainbowpox.png -------------------------------------------------------------------------------- /examples/static/js/kurento-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/static/js/kurento-utils.js -------------------------------------------------------------------------------- /examples/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/views/index.html -------------------------------------------------------------------------------- /examples/views/loopback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/views/loopback.html -------------------------------------------------------------------------------- /examples/views/multires.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/views/multires.html -------------------------------------------------------------------------------- /examples/views/room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/examples/views/room.html -------------------------------------------------------------------------------- /pykurento/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/pykurento/__init__.py -------------------------------------------------------------------------------- /pykurento/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/pykurento/client.py -------------------------------------------------------------------------------- /pykurento/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/pykurento/media.py -------------------------------------------------------------------------------- /pykurento/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/pykurento/transport.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minervaproject/pykurento/HEAD/setup.py --------------------------------------------------------------------------------