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")
Lists tables for the user.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://area120tables.googleapis.com/v1alpha1/tables
Gets a workspace. Returns NOT_FOUND if the workspace does not exist.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://area120tables.googleapis.com/v1alpha1/{name}
Lists workspaces for the user.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://area120tables.googleapis.com/v1alpha1/workspaces
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:area120tables
At a glance
Language Python
Endpoints10
Base URLhttps://area120tables.googleapis.com
✓ Official