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")
Retrieves a paginated list of either deleted users or all users in a domain.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://admin.googleapis.com/admin/directory/v1/users
Retrieves all groups of a domain or of a user given a userKey (paginated).
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://admin.googleapis.com/admin/directory/v1/groups
Returns a print server's configuration.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://admin.googleapis.com/admin/directory/v1/{name}
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:admin
At a glance
Language Python
Endpoints122
Base URLhttps://admin.googleapis.com
✓ Official