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 all the Photos that belong to the user. > Note: Recently created photos…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://streetviewpublish.googleapis.com/v1/photos
Lists all the PhotoSequences that belong to the user, in descending CreatePho…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://streetviewpublish.googleapis.com/v1/photoSequences
Gets the metadata of the specified Photo. This method returns the following e…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://streetviewpublish.googleapis.com/v1/photo/{photoId}
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:streetviewpublish
At a glance
Language Python
Endpoints14
Base URLhttps://streetviewpublish.googleapis.com
✓ Official