├── .dockerignore ├── .env_sample ├── .github └── workflows │ ├── pr-lint.yml │ └── test-and-deploy.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── FIRST_TIMERS.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.rst ├── TROUBLESHOOTING.md ├── USAGE.md ├── USE_CASES.md ├── VERSION.txt ├── auto_generate_release_notes.sh ├── cleanup.sh ├── docker-compose.yml ├── examples └── live_sendgrid_example.py ├── python_http_client ├── __init__.py ├── client.py └── exceptions.py ├── requirements.txt ├── run.sh ├── setup.py ├── static └── img │ ├── github-fork.png │ └── github-sign-up.png ├── tests ├── __init__.py ├── profile.py ├── test_daterange.py ├── test_repofiles.py └── test_unit.py ├── tox.ini └── twilio_sendgrid_logo.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env_sample: -------------------------------------------------------------------------------- 1 | export SENDGRID_API_KEY='' 2 | -------------------------------------------------------------------------------- /.github/workflows/pr-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/.github/workflows/pr-lint.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/.github/workflows/test-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/Dockerfile -------------------------------------------------------------------------------- /FIRST_TIMERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/FIRST_TIMERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/README.rst -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/USAGE.md -------------------------------------------------------------------------------- /USE_CASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/USE_CASES.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 3.3.7 2 | -------------------------------------------------------------------------------- /auto_generate_release_notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/auto_generate_release_notes.sh -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/cleanup.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/live_sendgrid_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/examples/live_sendgrid_example.py -------------------------------------------------------------------------------- /python_http_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/python_http_client/__init__.py -------------------------------------------------------------------------------- /python_http_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/python_http_client/client.py -------------------------------------------------------------------------------- /python_http_client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/python_http_client/exceptions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mock 2 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python2.7 -m unittest discover -v 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/setup.py -------------------------------------------------------------------------------- /static/img/github-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/static/img/github-fork.png -------------------------------------------------------------------------------- /static/img/github-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/static/img/github-sign-up.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/tests/profile.py -------------------------------------------------------------------------------- /tests/test_daterange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/tests/test_daterange.py -------------------------------------------------------------------------------- /tests/test_repofiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/tests/test_repofiles.py -------------------------------------------------------------------------------- /tests/test_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/tests/test_unit.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/tox.ini -------------------------------------------------------------------------------- /twilio_sendgrid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/python-http-client/HEAD/twilio_sendgrid_logo.png --------------------------------------------------------------------------------