Metadata-Version: 2.4
Name: simple-gcp-auth
Version: 0.1.0
Summary: Provides simplified credential fetching for Google Cloud Platform.
Author-email: Alexey Shuvalov <alexey@alexeyshuvalov.com>
Project-URL: Homepage, https://github.com/shuvalov/simple-gcp-auth
Project-URL: Bug Tracker, https://github.com/shuvalov/simple-gcp-auth/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Simple GCP Auth

This package provides a simplified way to fetch credentials for Google Cloud Platform.

## Installation

```bash
pip install simple_gcp_auth
```

## Usage

```python
from simple_gcp_auth import from_interactive_user

credentials = from_interactive_user()
# Authenticate via interactive web-based logon

```python
from simple_gcp_auth import from_manual_flow

credentials = from_manual_flow()
# Authenticate via web link. Can be performed on another device
