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")
Looks up a single pipeline. Returns a "NOT_FOUND" error if no such pipeline e…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datapipelines.googleapis.com/v1/{name}
Lists jobs for a given pipeline. Throws a "FORBIDDEN" error if the caller doe…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datapipelines.googleapis.com/v1/{parent}/jobs
Lists pipelines. Returns a "FORBIDDEN" error if the caller doesn't have permi…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datapipelines.googleapis.com/v1/{parent}/pipelines
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:datapipelines
At a glance
Language Python
Endpoints8
Base URLhttps://datapipelines.googleapis.com
✓ Official