Metadata-Version: 2.4
Name: pydepi-quart
Version: 0.1.0
Summary: Quart integration for pydepi
Author: Dan Leonard
License: MIT
Project-URL: Homepage, https://github.com/danleonard-nj/depi
Project-URL: Repository, https://github.com/danleonard-nj/depi
Keywords: dependency-injection,di,ioc,quart,asgi
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Framework :: AsyncIO
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pydepi<0.2,>=0.1
Requires-Dist: quart>=0.18

# pydepi-quart

Quart integration for [pydepi](https://github.com/danleonard-nj/depi), a type-hint driven dependency injection container.

This package contains only the Quart adapter. The container itself lives in `pydepi`, which has no dependencies of its own.

## Install

```bash
pip install pydepi-quart
```

The extras alias also works, though the name above is more accurate --
this is a separate distribution, not a feature of core:

```bash
pip install pydepi[quart]
```

## Use

```python
from depi_quart import QuartInjector
```

See the [main README](https://github.com/danleonard-nj/depi#framework-integrations) for the full integration guide.
