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")
Gets a policy tag.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datacatalog.googleapis.com/v1beta1/{name}
Lists tags assigned to an Entry. The columns in the response are lowercased.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datacatalog.googleapis.com/v1beta1/{parent}/tags
Get an entry by target resource name. This method allows clients to use the r…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datacatalog.googleapis.com/v1beta1/entries:lookup
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:datacatalog
At a glance
Language Python
Endpoints23
Base URLhttps://datacatalog.googleapis.com
✓ Official