Metadata-Version: 2.3
Name: dbx-tools-google
Version: 0.6.186
Summary: Python bindings for dbx-tools-google
Requires-Dist: dbx-tools-databricks==0.6.186
Requires-Python: >=3.11, <3.14
Project-URL: Source, https://github.com/reggie-db/dbx-tools/tree/main/packages/py/google
Description-Content-Type: text/markdown

# dbx-tools-google

Python bindings for Google integrations. The current surface provides Google
Application Default Credentials through the native Rust implementation.

```python
from dbx_tools.google import GoogleAuthOptions, create_google_auth

auth = await create_google_auth(GoogleAuthOptions())
token = await auth.token()
```

ADC checks `GOOGLE_APPLICATION_CREDENTIALS`, gcloud's well-known credentials
file, then the Google Cloud metadata service. Install from PyPI with
`pip install dbx-tools-google`.
