├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── DESCRIPTION.rst ├── LICENSE ├── README.md ├── exemplos └── ura.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_cliente.py └── test_helper.py └── totalvoice ├── __init__.py └── cliente ├── __init__.py └── api ├── __init__.py ├── audio.py ├── bina.py ├── central ├── __init__.py ├── ramal.py ├── ura.py └── webphone.py ├── chamada.py ├── composto.py ├── conferencia.py ├── conta.py ├── did.py ├── fila.py ├── helper ├── __init__.py ├── routes.py └── utils.py ├── minhaconta.py ├── sms.py ├── totalvoice.py └── tts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/README.md -------------------------------------------------------------------------------- /exemplos/ura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/exemplos/ura.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cliente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/tests/test_cliente.py -------------------------------------------------------------------------------- /tests/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/tests/test_helper.py -------------------------------------------------------------------------------- /totalvoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totalvoice/cliente/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/__init__.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/__init__.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/audio.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/bina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/bina.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/central/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totalvoice/cliente/api/central/ramal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/central/ramal.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/central/ura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/central/ura.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/central/webphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/central/webphone.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/chamada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/chamada.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/composto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/composto.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/conferencia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/conferencia.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/conta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/conta.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/did.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/did.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/fila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/fila.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totalvoice/cliente/api/helper/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/helper/routes.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/helper/utils.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/minhaconta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/minhaconta.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/sms.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/totalvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/totalvoice.py -------------------------------------------------------------------------------- /totalvoice/cliente/api/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totalvoice/totalvoice-python/HEAD/totalvoice/cliente/api/tts.py --------------------------------------------------------------------------------