Using python-genai with googleapis.com

Python integration

✓ Official SDK
Install
pip install python-genai
Quick start
import python-genai

# Use an OAuth2 access token
client = python_genai.Client(access_token="YOUR_ACCESS_TOKEN")
Returns all the authenticated user's task lists.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://tasks.googleapis.com/tasks/v1/users/@me/lists
Returns all tasks in the specified task list.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://tasks.googleapis.com/tasks/v1/lists/{tasklist}/tasks
Returns the authenticated user's specified task list.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://tasks.googleapis.com/tasks/v1/users/@me/lists/{tasklist}
SDK on GitHub 📄 API Docs
SDK
python-genai
Python
API
googleapis.com
googleapis.com:tasks
At a glance
Language Python
Endpoints14
Base URLhttps://tasks.googleapis.com
✓ Official