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 an enterprise by domain name. This is only supported for enterprises…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://androidenterprise.googleapis.com/androidenterprise/v1/enterprises
Retrieves the name and domain of an enterprise.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://androidenterprise.googleapis.com/androidenterprise/v1/enterprises/{enterpriseId}
Retrieves details of an Android app permission for display to an enterprise a…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://androidenterprise.googleapis.com/androidenterprise/v1/permissions/{permissionId}
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:androidenterprise

At a glance

Language Python
Endpoints76
Base URLhttps://androidenterprise.googleapis.com
✓ Official