├── .coveragerc ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml ├── runConfigurations │ ├── Unit_Tests.xml │ └── Unit_Tests__coverage_.xml ├── scopes │ └── scope_settings.xml ├── testrunner.xml └── vcs.xml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── ari ├── __init__.py ├── client.py └── model.py ├── ari_test ├── __init__.py ├── client_test.py ├── utils.py └── websocket_test.py ├── ast-ari-py.iml ├── examples ├── bridge_example.py ├── cleanup_example.py ├── example.py ├── originate_example.py └── playback_example.py ├── nose.cfg ├── sample-api ├── README.md ├── applications.json ├── asterisk.json ├── bridges.json ├── channels.json ├── deviceStates.json ├── endpoints.json ├── events.json ├── mailboxes.json ├── playbacks.json ├── recordings.json ├── resources.json └── sounds.json ├── setup.cfg └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | workspace.xml 2 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ast-ari-py 2 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Unit_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/runConfigurations/Unit_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Unit_Tests__coverage_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/runConfigurations/Unit_Tests__coverage_.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/testrunner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/testrunner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/README.rst -------------------------------------------------------------------------------- /ari/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/ari/__init__.py -------------------------------------------------------------------------------- /ari/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/ari/client.py -------------------------------------------------------------------------------- /ari/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/ari/model.py -------------------------------------------------------------------------------- /ari_test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2013, Digium, Inc. 3 | # 4 | -------------------------------------------------------------------------------- /ari_test/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/ari_test/client_test.py -------------------------------------------------------------------------------- /ari_test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/ari_test/utils.py -------------------------------------------------------------------------------- /ari_test/websocket_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/ari_test/websocket_test.py -------------------------------------------------------------------------------- /ast-ari-py.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/ast-ari-py.iml -------------------------------------------------------------------------------- /examples/bridge_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/examples/bridge_example.py -------------------------------------------------------------------------------- /examples/cleanup_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/examples/cleanup_example.py -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/originate_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/examples/originate_example.py -------------------------------------------------------------------------------- /examples/playback_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/examples/playback_example.py -------------------------------------------------------------------------------- /nose.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/nose.cfg -------------------------------------------------------------------------------- /sample-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/README.md -------------------------------------------------------------------------------- /sample-api/applications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/applications.json -------------------------------------------------------------------------------- /sample-api/asterisk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/asterisk.json -------------------------------------------------------------------------------- /sample-api/bridges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/bridges.json -------------------------------------------------------------------------------- /sample-api/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/channels.json -------------------------------------------------------------------------------- /sample-api/deviceStates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/deviceStates.json -------------------------------------------------------------------------------- /sample-api/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/endpoints.json -------------------------------------------------------------------------------- /sample-api/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/events.json -------------------------------------------------------------------------------- /sample-api/mailboxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/mailboxes.json -------------------------------------------------------------------------------- /sample-api/playbacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/playbacks.json -------------------------------------------------------------------------------- /sample-api/recordings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/recordings.json -------------------------------------------------------------------------------- /sample-api/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/resources.json -------------------------------------------------------------------------------- /sample-api/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/sample-api/sounds.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/ari-py/HEAD/setup.py --------------------------------------------------------------------------------