Using python-genai with googleapis.com

Python integration

✓ Official SDK
Install
pip install python-genai
Quick start
import python-genai

# Use an OAuth2 access token
client = python_genai.Client(access_token="YOUR_ACCESS_TOKEN")
Gets a single entity row matching the entity type and entity id specified in …
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{name}
Gets the schema of all the actions supported by the connector.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{parent}/actions
Lists entity rows of a particular entity type contained in the request. Note:…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{parent}/entities
SDK on GitHub 📄 API Docs
SDK
python-genai
Python
API
googleapis.com
googleapis.com:connectors
At a glance
Language Python
Endpoints11
Base URLhttps://connectors.googleapis.com
✓ Official