Metadata-Version: 2.4
Name: asgire
Version: 3.12.0
Summary: A revamped and modernized drop-in replacement for asgiref.
Author-email: Weiliang Li <to.be.impressive@gmail.com>, Django Software Foundation <foundation@djangoproject.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-Expression: BSD-3-Clause
License-File: LICENSE
Requires-Dist: typing_extensions>=4; python_version < '3.11'

# asgire

A revamped and modernized drop-in replacement for [asgiref](https://pypi.org/project/asgiref/).

Same license, same API, better code and maintenance.

## Installation

```bash
pip install asgire
```

If migrating from the original:

```bash
pip uninstall asgiref
pip install asgire
```

The import stays `import asgiref` — no code changes needed.

## Development

```bash
uv sync
uv run pytest -v
uv run ruff check .
uv run ty check
```

