Using python-storage with googleapis.com

Python integration

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

# Use an OAuth2 access token
client = python_storage.Client(access_token="YOUR_ACCESS_TOKEN")
Get a form.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://forms.googleapis.com/v1/forms/{formId}
Return a list of the watches owned by the invoking project. The maximum numbe…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://forms.googleapis.com/v1/forms/{formId}/watches
List a form's responses.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://forms.googleapis.com/v1/forms/{formId}/responses
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:forms
At a glance
Language Python
Endpoints9
Base URLhttps://forms.googleapis.com
✓ Official