├── .gitignore ├── LICENSE ├── README.rst ├── eventsocket.py ├── examples ├── dialer.py ├── mwi.py ├── sample.wav └── server.tac └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.pyc 3 | build 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/README.rst -------------------------------------------------------------------------------- /eventsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/eventsocket.py -------------------------------------------------------------------------------- /examples/dialer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/examples/dialer.py -------------------------------------------------------------------------------- /examples/mwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/examples/mwi.py -------------------------------------------------------------------------------- /examples/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/examples/sample.wav -------------------------------------------------------------------------------- /examples/server.tac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/examples/server.tac -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorix/eventsocket/HEAD/setup.py --------------------------------------------------------------------------------