A Python client library for connecting securely to your Google Cloud AlloyDB instances.
Project description
AlloyDB Python Connector
The AlloyDB Python Connector is the recommended way to connect to AlloyDB from Python applications. It provides:
- Secure connections — TLS 1.3 encryption and identity verification, independent of the database protocol
- IAM-based authorization — controls who can connect to your AlloyDB instances using Google Cloud IAM
- No certificate management — no SSL certificates, firewall rules, or IP allowlisting required
- IAM database authentication — optional support for automatic IAM DB authentication
Supported drivers: pg8000 (sync) · asyncpg (async)
Quickstart
Sync (pg8000 + SQLAlchemy)
Install:
pip install "google-cloud-alloydb-connector[pg8000]" sqlalchemy
Connect:
import sqlalchemy
from google.cloud.alloydbconnector import Connector
INSTANCE_URI = "projects/MY_PROJECT/locations/MY_REGION/clusters/MY_CLUSTER/instances/MY_INSTANCE"
with Connector() as connector:
pool = sqlalchemy.create_engine(
"postgresql+pg8000://",
creator=lambda: connector.connect(
INSTANCE_URI,
"pg8000",
user="my-user",
password="my-password",
db="my-db",
),
)
with pool.connect() as conn:
result = conn.execute(sqlalchemy.text("SELECT NOW()")).fetchone()
print(result)
Async (asyncpg + SQLAlchemy)
Install:
pip install "google-cloud-alloydb-connector[asyncpg]" sqlalchemy
Connect:
import asyncio
import sqlalchemy
from sqlalchemy.ext.asyncio import create_async_engine
from google.cloud.alloydbconnector import AsyncConnector
INSTANCE_URI = "projects/MY_PROJECT/locations/MY_REGION/clusters/MY_CLUSTER/instances/MY_INSTANCE"
async def main():
async with AsyncConnector() as connector:
pool = create_async_engine(
"postgresql+asyncpg://",
async_creator=lambda: connector.connect(
INSTANCE_URI,
"asyncpg",
user="my-user",
password="my-password",
db="my-db",
),
)
async with pool.connect() as conn:
result = await conn.execute(sqlalchemy.text("SELECT NOW()"))
print(result.fetchone())
await pool.dispose()
asyncio.run(main())
Prerequisites
-
Enable the AlloyDB API in your Google Cloud project: console.cloud.google.com/apis/api/alloydb.googleapis.com
-
Grant IAM permissions: your principal needs the AlloyDB Client role (or equivalent) on the instance.
-
Set up credentials using Application Default Credentials (ADC):
gcloud auth application-default login
Note: By default the connector uses private IP. Run your code from an environment connected to the VPC that hosts your AlloyDB instance, or see Configuring AlloyDB Connectivity for other options.
Configuration
Connector Lifecycle
Create one connector per application and reuse it for the lifetime of the process. Each connector maintains a background refresh cycle that keeps connection credentials warm, so creating one per request would waste resources and cause unnecessary latency.
The recommended approach is a context manager — close() is called
automatically, even if an exception is raised:
# Sync
with Connector() as connector:
...
# Async
async with AsyncConnector() as connector:
...
For long-lived applications (e.g. a web server) where the connector outlives
any single block, call close() explicitly at shutdown:
# Sync
connector = Connector()
...
connector.close()
# Async
connector = AsyncConnector()
...
await connector.close()
IP Address Type
Connect over private IP (default), public IP, or Private Service Connect (PSC):
# At the Connector level (applies to all connections)
connector = Connector(ip_type="PUBLIC")
# Or per connection
connector.connect(INSTANCE_URI, "pg8000", ..., ip_type="PSC")
Valid values: "PRIVATE" (default), "PUBLIC", "PSC".
IAM Database Authentication
Skip the password and authenticate using your IAM identity instead. First, enable IAM auth on your instance and create an IAM database user.
connector.connect(
INSTANCE_URI,
"pg8000", # or "asyncpg"
user="service-account@my-project.iam", # omit .gserviceaccount.com suffix
db="my-db",
enable_iam_auth=True,
)
For IAM user accounts, use the full email address as user.
Lazy Refresh (Cloud Run, Cloud Functions)
In serverless environments where CPU may be throttled between requests, use
refresh_strategy="lazy" to fetch connection info on demand instead of
running a background refresh cycle:
connector = Connector(refresh_strategy="lazy")
Debug Logging
import logging
logging.basicConfig(format="%(asctime)s [%(levelname)s]: %(message)s")
logging.getLogger("google.cloud.alloydbconnector").setLevel(logging.DEBUG)
Import Paths
This package supports two equivalent import paths:
from google.cloud.alloydbconnector import Connector # preferred
from google.cloud.alloydb.connector import Connector # also supported
The first is preferred to avoid namespace collisions with the google-cloud-alloydb package.
Support Policy
Major Version Lifecycle
This project uses semantic versioning:
- Active — receives all new features and security fixes. New major versions are guaranteed active for a minimum of 1 year.
- Deprecated — receives security and critical bug fixes only, for 1 year after deprecation.
- Unsupported — any major version deprecated for ≥1 year.
Supported Python Versions
Follows the Python Version Support Policy used by Google Cloud Libraries for Python. Changes in supported Python versions are treated as minor changes and listed in the release notes.
Release Cadence
This project targets a minimum monthly release cadence. If no new features or fixes have been added, a new PATCH version with the latest dependencies is released.
Contributing
We welcome outside contributions. Please see our Contributing Guide for details on how best to contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file google_cloud_alloydb_connector-1.12.1.tar.gz.
File metadata
- Download URL: google_cloud_alloydb_connector-1.12.1.tar.gz
- Upload date:
- Size: 31.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fe27f328136a9f8b0e0fe2927e684725a21e6891fe5fd09212e078f295d43df
|
|
| MD5 |
4f8c0a5978870e586d09c091b1d1bf10
|
|
| BLAKE2b-256 |
bb6d8df5574d9d23b37969f04bf6f6d047bfe934d31bf6411d141a6a596fa7da
|
Provenance
The following attestation bundles were made for google_cloud_alloydb_connector-1.12.1.tar.gz:
Publisher:
google-cloud-sdk-py@oss-exit-gate-prod.iam.gserviceaccount.com
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_cloud_alloydb_connector-1.12.1.tar.gz -
Subject digest:
0fe27f328136a9f8b0e0fe2927e684725a21e6891fe5fd09212e078f295d43df - Sigstore transparency entry: 1045494584
- Sigstore integration time:
-
Token Issuer:
https://accounts.google.com -
Service Account:
google-cloud-sdk-py@oss-exit-gate-prod.iam.gserviceaccount.com
-
Statement type:
File details
Details for the file google_cloud_alloydb_connector-1.12.1-py3-none-any.whl.
File metadata
- Download URL: google_cloud_alloydb_connector-1.12.1-py3-none-any.whl
- Upload date:
- Size: 44.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
360c9f549c9dadfa6326247ebc8cf8c1d32887ef7ea6c0bd96decf2d285b0632
|
|
| MD5 |
474550fe6edc54d4d0cf2ed0f0b6792c
|
|
| BLAKE2b-256 |
85b993430e9b10157f40efe28fe1d653cfd86f32419804c198c5802b774b1f84
|
Provenance
The following attestation bundles were made for google_cloud_alloydb_connector-1.12.1-py3-none-any.whl:
Publisher:
google-cloud-sdk-py@oss-exit-gate-prod.iam.gserviceaccount.com
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
google_cloud_alloydb_connector-1.12.1-py3-none-any.whl -
Subject digest:
360c9f549c9dadfa6326247ebc8cf8c1d32887ef7ea6c0bd96decf2d285b0632 - Sigstore transparency entry: 1045494543
- Sigstore integration time:
-
Token Issuer:
https://accounts.google.com -
Service Account:
google-cloud-sdk-py@oss-exit-gate-prod.iam.gserviceaccount.com
-
Statement type: