├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Readme.org ├── doc ├── Examples.rst ├── Makefile ├── api │ ├── modules.rst │ ├── textmagic.compat.rst │ ├── textmagic.rest.models.rst │ ├── textmagic.rest.rst │ └── textmagic.rst ├── conf.py ├── index.rst └── make.bat ├── examples ├── __init__.py ├── test_contacts.py ├── test_custom_fields.py ├── test_lists.py ├── test_messages.py ├── test_templates.py ├── test_unsubscribers.py └── test_users.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── app.py ├── test_base.py ├── test_contacts.py ├── test_custom_fields.py ├── test_lists.py ├── test_messages.py ├── test_sample.py ├── test_templates.py ├── test_unsubscribers.py └── test_user.py ├── textmagic ├── __init__.py ├── compat │ └── __init__.py ├── conf │ └── cacert.pem ├── exceptions.py ├── rest │ ├── __init__.py │ ├── client.py │ ├── exceptions.py │ └── models │ │ ├── __init__.py │ │ ├── base.py │ │ ├── bulks.py │ │ ├── chats.py │ │ ├── contacts.py │ │ ├── custom_fields.py │ │ ├── messages.py │ │ ├── numbers.py │ │ ├── replies.py │ │ ├── schedules.py │ │ ├── sessions.py │ │ ├── stats.py │ │ ├── templates.py │ │ ├── tokens.py │ │ ├── unsubscribers.py │ │ ├── user.py │ │ └── utils.py └── version.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_STORE 3 | .idea 4 | .tox 5 | *.pyc 6 | build 7 | dist 8 | doc 9 | *.egg-info -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include textmagic/conf * -------------------------------------------------------------------------------- /Readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/Readme.org -------------------------------------------------------------------------------- /doc/Examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/Examples.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/api/modules.rst -------------------------------------------------------------------------------- /doc/api/textmagic.compat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/api/textmagic.compat.rst -------------------------------------------------------------------------------- /doc/api/textmagic.rest.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/api/textmagic.rest.models.rst -------------------------------------------------------------------------------- /doc/api/textmagic.rest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/api/textmagic.rest.rst -------------------------------------------------------------------------------- /doc/api/textmagic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/api/textmagic.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/doc/make.bat -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/test_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/test_contacts.py -------------------------------------------------------------------------------- /examples/test_custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/test_custom_fields.py -------------------------------------------------------------------------------- /examples/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/test_lists.py -------------------------------------------------------------------------------- /examples/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/test_messages.py -------------------------------------------------------------------------------- /examples/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/test_templates.py -------------------------------------------------------------------------------- /examples/test_unsubscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/test_unsubscribers.py -------------------------------------------------------------------------------- /examples/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/examples/test_users.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/app.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_contacts.py -------------------------------------------------------------------------------- /tests/test_custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_custom_fields.py -------------------------------------------------------------------------------- /tests/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_lists.py -------------------------------------------------------------------------------- /tests/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_messages.py -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_sample.py -------------------------------------------------------------------------------- /tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_templates.py -------------------------------------------------------------------------------- /tests/test_unsubscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_unsubscribers.py -------------------------------------------------------------------------------- /tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tests/test_user.py -------------------------------------------------------------------------------- /textmagic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/__init__.py -------------------------------------------------------------------------------- /textmagic/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/compat/__init__.py -------------------------------------------------------------------------------- /textmagic/conf/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/conf/cacert.pem -------------------------------------------------------------------------------- /textmagic/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/exceptions.py -------------------------------------------------------------------------------- /textmagic/rest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/__init__.py -------------------------------------------------------------------------------- /textmagic/rest/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/client.py -------------------------------------------------------------------------------- /textmagic/rest/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/exceptions.py -------------------------------------------------------------------------------- /textmagic/rest/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/__init__.py -------------------------------------------------------------------------------- /textmagic/rest/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/base.py -------------------------------------------------------------------------------- /textmagic/rest/models/bulks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/bulks.py -------------------------------------------------------------------------------- /textmagic/rest/models/chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/chats.py -------------------------------------------------------------------------------- /textmagic/rest/models/contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/contacts.py -------------------------------------------------------------------------------- /textmagic/rest/models/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/custom_fields.py -------------------------------------------------------------------------------- /textmagic/rest/models/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/messages.py -------------------------------------------------------------------------------- /textmagic/rest/models/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/numbers.py -------------------------------------------------------------------------------- /textmagic/rest/models/replies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/replies.py -------------------------------------------------------------------------------- /textmagic/rest/models/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/schedules.py -------------------------------------------------------------------------------- /textmagic/rest/models/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/sessions.py -------------------------------------------------------------------------------- /textmagic/rest/models/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/stats.py -------------------------------------------------------------------------------- /textmagic/rest/models/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/templates.py -------------------------------------------------------------------------------- /textmagic/rest/models/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/tokens.py -------------------------------------------------------------------------------- /textmagic/rest/models/unsubscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/unsubscribers.py -------------------------------------------------------------------------------- /textmagic/rest/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/user.py -------------------------------------------------------------------------------- /textmagic/rest/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/rest/models/utils.py -------------------------------------------------------------------------------- /textmagic/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/textmagic/version.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textmagic/textmagic-rest-python/HEAD/tox.ini --------------------------------------------------------------------------------