├── .circleci └── config.yml ├── .coveragerc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── SECURITY.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── gmail_wrapper ├── __init__.py ├── client.py ├── entities.py └── exceptions.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── test_client.py ├── test_entities.py ├── test_exceptions.py └── utils.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @loadsmart/krakers 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /gmail_wrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/gmail_wrapper/__init__.py -------------------------------------------------------------------------------- /gmail_wrapper/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/gmail_wrapper/client.py -------------------------------------------------------------------------------- /gmail_wrapper/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/gmail_wrapper/entities.py -------------------------------------------------------------------------------- /gmail_wrapper/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/gmail_wrapper/exceptions.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/tests/test_entities.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadsmart/gmail-wrapper/HEAD/tox.ini --------------------------------------------------------------------------------