Metadata-Version: 2.1
Name: google-workspace
Version: 0.18.2
Summary: A Python wrapper for the google workspace APIs
Home-page: https://github.com/dermasmid/python-google-workspace
Author: Cheskel Twersky
Author-email: yoursn21@gmail.com
License: MIT
Keywords: gmail gmail-api drive google-drive google-drive-api api-wrapper python3 python
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: dill (==0.3.3)
Requires-Dist: google-api-python-client (==1.11.0)
Requires-Dist: google-auth-oauthlib (==0.4.1)
Requires-Dist: python-magic (==0.4.18)

# Note

python-google-workspace is in it's very early stages and for now only has implemented a wrapper for Gmail.

## Getting Started

``` bash
pip3 install -U google-workspace
```

Then you need to get a client secret file from [the google console](https://console.developers.google.com/) and you need to enable the api you want to use, just google it.

After you saved the json file to your workdir - you are all set!

To use the Gmail API simply create a python file and enter this:

``` python
import google_workspace

mailbox = google_workspace.gmail.Gmail()

for msg in mailbox.get_messages('inbox'):
    print(msg)
```


