Metadata-Version: 2.4
Name: propelauth-byo
Version: 1.0.4
Summary: PropelAuth BYO Python Client Library
Author-email: PropelAuth <support@propelauth.com>
License: MIT
Project-URL: Homepage, https://byo.propelauth.com
Project-URL: Documentation, https://docs.byo.propelauth.com
Keywords: auth,authentication,propelauth,byo
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: mypy>=1.18.2
Provides-Extra: dev
Requires-Dist: mypy>=1.18.0; extra == "dev"
Requires-Dist: ruff>=0.13.0; extra == "dev"
Requires-Dist: pytest>=8.4.0; extra == "dev"
Requires-Dist: pytest-asyncio>=1.2.0; extra == "dev"
Requires-Dist: build>=1.3.0; extra == "dev"
Requires-Dist: twine>=6.2.0; extra == "dev"

# PropelAuth BYO Python Client

Python client library for PropelAuth BYO (Bring Your Own) authentication service.

## Installation

```bash
pip install propelauth-byo
```

## Usage

```python
from propelauth_byo import create_client

client = create_client(
    url="https://your-byo-instance.com",
    integration_key="your-integration-key"
)

# Use the client for authentication operations
result = await client.ping()
```
