Metadata-Version: 2.1
Name: snoozingmail
Version: 0.0.1
Summary: A minimal python3 wrapper for the Gmail API
Home-page: https://github.com/nknaian/snoozingmail
Author: Nick Is Snoozin
Author-email: snoozinforabrusin@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: google-api-python-client
Requires-Dist: google-auth-httplib2
Requires-Dist: google-auth-oauthlib

# snoozingmail
A minimal python3 wrapper for the Gmail API that exposes basic message reading, modifying, and sending capabilities.

# usage
- You'll first need to create a Cloud Platform project enabled with the python Gmail API, and download the *credentials.json* file. To do that follow Google's [quickstart](https://developers.google.com/gmail/api/quickstart/python)
- Download this wrapper from pip using:
```
pip install -i https://test.pypi.org/simple/ snoozingmail

```
- To use the wrapper, simply create a new `Snoozin` object with the path to your *credentials.json* file like so:
```python
Snoozin("./credentials.json")
```


