Metadata-Version: 2.1
Name: gtasks-api
Version: 0.0.3
Summary: Based on quickstart sample by Google
Home-page: https://github.com/BlueBlueBlob/gtasks_api
Author: BlueBlueBlob
Author-email: adrien.lesot@gmail.com
License: MIT
Keywords: google,tasks,task,gtasks,gtask
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: google-api-python-client
Requires-Dist: google-auth-httplib2
Requires-Dist: google-auth-oauthlib

# gtasks_api
[![Build Status](https://travis-ci.com/BlueBlueBlob/gtasks_api.svg?branch=master)](https://travis-ci.com/BlueBlueBlob/gtasks_api)
[![CodeFactor](https://www.codefactor.io/repository/github/blueblueblob/gtasks_api/badge)](https://www.codefactor.io/repository/github/blueblueblob/gtasks_api)
[![PyPI](https://img.shields.io/pypi/v/gtasks-api.svg)](https://pypi.org/project/gtasks-api/)
## Installation

`pip install gtasks-api`

## Usage
Import the package: 
```python
from gtasks_api import GtasksAPI
```

Obtain a Gtasks instance:
```python
gtasks = GtasksAPI('credentials.json', 'token.pickle')
if gtasks.auth_url:
    gtasks.finish_login(auth_code)

```

Get all task lists:
```python
gtasks.service.tasklists().list().execute()
```

API Documentation : https://developers.google.com/resources/api-libraries/documentation/tasks/v1/python/latest/

