Gmail API Wrapper - Python Client
Project description
Gmail API Wrapper For Python
============================
Behind the scenes
----------------
* *Language*: Python_
* *Testing*: Tox_, Pytest_, Coverage_, Flake8_
* *Deploying*: Ansible_
* *CI*: CircleCI_
* *Code*: Github_
Installation
------------
.. code:: bash
pip install --upgrade gmail-api-wrapper
Setup
-----
`gmail-api-wrapper` uses OAuth authentication
Generate a client ID and client secret Here_ under section
**Step 1: Turn on the Gmail API**. Follow steps *a* to *h*.
After you have downloaded the client_secret file, rename it to a human
friendly name.
Env Variables
----------------------------------------------
Set the following `env` variables.
- Get scopes from GMAIL_SCOPES_
.. code:: bash
# Space delimited string
export GAW_SCOPES="'gmail-scopes-1 'gmail-scope-2'"
# client_secret json file path
export GAW_CLIENT_SECRET_FILE_PATH=<path-to-client-secret-json-file>
# If you're using custom SSL certs, set GAW_CA_CERTS_PEM_FILE env variable
export GAW_CA_CERTS_PEM_FILE=<path-to-custom-pem-ssl-cert>
# The user Id to use. Default to 'me'. A special identifier for gmail
# that refers to the email address used to do OAuth2 handshake
export GAW_USER_ID=<your@gmail.address>
# Your preferred application name. Defaults to 'Gmail API Wrapper'
export GAW_APPLICATION_NAME=<your-preferred-application-name>
# Diable ssl cert validation. Default to False
export GAW_DISABLE_SSL_CERTS=True
- View the permissions_granted_ to you application
Usage - READ
------------
.. code:: python
from gmail_api_wrapper.crud.read import GmailAPIReadWrapper
gmail_api = GmailAPIReadWrapper()
# Check unread messages. Returns a list of dicts in the below format
gmail_api.check_new_mail()
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Check new mail from specific sender. Returns a list of dicts above
gmail_api.check_new_mail(sender='example@mail_server.com')
# Alternatively, you get all unread messages from a specific sender
gmail_api.get_unread_messages(sender='example@mail_server.com')
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Get all labels present. Returns a list of strings
gmail_api.get_labels()
>>> ['INBOX', 'UNREAD', 'SPAM', 'DRAFTS']
# Get total message count. Returns a formatted json object
gmail_api.get_total_messages()
>>> {
'Total Messages': 2017,
'Total Threads': 123,
'Email Address': 'example@mail_server.com'
}
# Get a list of messages. Defaults to INBOX if no label is specified
gmail_api.list_messages()
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Get a list of messages in DRAFTS and SPAM
gmail_api.list_messages(labels=['DRAFTS', 'SPAM'])
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Get a specific message. `message_id` passed must be a google message id object
gmail_api.get_message('message_id')
Authors
-------
* yoda <dee.caranja@gmail.com>
.. _Python: https://www.python.org/
.. _Tox: https://tox.readthedocs.io/en/latest/
.. _Pytest: http://doc.pytest.org/en/latest/
.. _Coverage: https://coverage.readthedocs.io/en/coverage-4.2/
.. _Flake8: http://flake8.pycqa.org/en/latest/
.. _Ansible: http://docs.ansible.com/ansible/index.html
.. _CircleCI: https://circleci.com/gh/yoda-yoda/gmail-api-wrapper
.. _Github: https://github.com/yoda-yoda/gmail-api-wrapper
.. _Here: https://developers.google.com/gmail/api/quickstart/python
.. _GMAIL_SCOPES: https://developers.google.com/gmail/api/auth/scopes/
.. _permissions_granted: https://accounts.google.com/b/0/IssuedAuthSubTokens
============================
Behind the scenes
----------------
* *Language*: Python_
* *Testing*: Tox_, Pytest_, Coverage_, Flake8_
* *Deploying*: Ansible_
* *CI*: CircleCI_
* *Code*: Github_
Installation
------------
.. code:: bash
pip install --upgrade gmail-api-wrapper
Setup
-----
`gmail-api-wrapper` uses OAuth authentication
Generate a client ID and client secret Here_ under section
**Step 1: Turn on the Gmail API**. Follow steps *a* to *h*.
After you have downloaded the client_secret file, rename it to a human
friendly name.
Env Variables
----------------------------------------------
Set the following `env` variables.
- Get scopes from GMAIL_SCOPES_
.. code:: bash
# Space delimited string
export GAW_SCOPES="'gmail-scopes-1 'gmail-scope-2'"
# client_secret json file path
export GAW_CLIENT_SECRET_FILE_PATH=<path-to-client-secret-json-file>
# If you're using custom SSL certs, set GAW_CA_CERTS_PEM_FILE env variable
export GAW_CA_CERTS_PEM_FILE=<path-to-custom-pem-ssl-cert>
# The user Id to use. Default to 'me'. A special identifier for gmail
# that refers to the email address used to do OAuth2 handshake
export GAW_USER_ID=<your@gmail.address>
# Your preferred application name. Defaults to 'Gmail API Wrapper'
export GAW_APPLICATION_NAME=<your-preferred-application-name>
# Diable ssl cert validation. Default to False
export GAW_DISABLE_SSL_CERTS=True
- View the permissions_granted_ to you application
Usage - READ
------------
.. code:: python
from gmail_api_wrapper.crud.read import GmailAPIReadWrapper
gmail_api = GmailAPIReadWrapper()
# Check unread messages. Returns a list of dicts in the below format
gmail_api.check_new_mail()
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Check new mail from specific sender. Returns a list of dicts above
gmail_api.check_new_mail(sender='example@mail_server.com')
# Alternatively, you get all unread messages from a specific sender
gmail_api.get_unread_messages(sender='example@mail_server.com')
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Get all labels present. Returns a list of strings
gmail_api.get_labels()
>>> ['INBOX', 'UNREAD', 'SPAM', 'DRAFTS']
# Get total message count. Returns a formatted json object
gmail_api.get_total_messages()
>>> {
'Total Messages': 2017,
'Total Threads': 123,
'Email Address': 'example@mail_server.com'
}
# Get a list of messages. Defaults to INBOX if no label is specified
gmail_api.list_messages()
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Get a list of messages in DRAFTS and SPAM
gmail_api.list_messages(labels=['DRAFTS', 'SPAM'])
>>> [
{
'subject': 'Sample Subject',
'base64_msg_body': 'base64string',
'from:' 'exapmle@mail_server.com'
'date': '2017-09-16T10:57:12.4323'
},
]
# Get a specific message. `message_id` passed must be a google message id object
gmail_api.get_message('message_id')
Authors
-------
* yoda <dee.caranja@gmail.com>
.. _Python: https://www.python.org/
.. _Tox: https://tox.readthedocs.io/en/latest/
.. _Pytest: http://doc.pytest.org/en/latest/
.. _Coverage: https://coverage.readthedocs.io/en/coverage-4.2/
.. _Flake8: http://flake8.pycqa.org/en/latest/
.. _Ansible: http://docs.ansible.com/ansible/index.html
.. _CircleCI: https://circleci.com/gh/yoda-yoda/gmail-api-wrapper
.. _Github: https://github.com/yoda-yoda/gmail-api-wrapper
.. _Here: https://developers.google.com/gmail/api/quickstart/python
.. _GMAIL_SCOPES: https://developers.google.com/gmail/api/auth/scopes/
.. _permissions_granted: https://accounts.google.com/b/0/IssuedAuthSubTokens
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gmail-api-wrapper-0.1.1a1.tar.gz
(10.1 kB
view hashes)
Built Distribution
Close
Hashes for gmail-api-wrapper-0.1.1a1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce9407629b528b2e7b2c5189d142889db02a91f5a632befebedf62f8e716629c |
|
MD5 | ddef9ddf923de471a383b3aaf0b940b5 |
|
BLAKE2b-256 | fae3d48073604688d4af82facbc92ac6abae9abbc5cfb49c74fd2638fc06cc4c |
Close
Hashes for gmail_api_wrapper-0.1.1a1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f1b78f49fbc5e03361e0fd0219508b9dc952c379a055228ad502dd7f987eaa2 |
|
MD5 | 6a323c45c9cb9badcb9b5ae67816f90e |
|
BLAKE2b-256 | bf9443ee5ba72ce342c221ff9cc60550ba027c9ebe78251ceb2e811ff64b3ae3 |