Metadata-Version: 2.4
Name: djangoasyncframework
Version: 0.3.5
Summary:  Providing async views, ORM, and tasks for Django. 
Home-page: https://github.com/mouhamaddev/django-async-framework
Author: mouhamaddev
Author-email: mouhamaddev04@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# [Django Async Framework](https://mouhamaddev.github.io/django-async-framework/)

[![pypi-version]][pypi]

Django Async Framework is a lightweight class-based view framework built on top of Django.

You can find the documentation for the project at [https://mouhamaddev.github.io/django-async-framework/](https://mouhamaddev.github.io/django-async-framework/).

## Overview
Django is a powerful web framework, but its async support is still a work in progress. Some parts play well with async, others don’t. Django Async Framework aims to fill in those gaps by giving a fully async-first way to build with Django.

### Getting Started

1. Install it with pip:

```bash
pip install djangoasyncframework
```

2. Add it to your `INSTALLED_APPS` in `settings.py`:

```python
INSTALLED_APPS = [
    # your other apps...
    'async_framework',
]
```

### Why This Matters

Django deserves a modern async-first ecosystem, not just patches around old sync components. It provides a structured foundation for writing asynchronous code in Django without relying on sync-based workarounds.


### Project Status

This is an early-stage open-source project that’s still growing. We’d love your feedback, ideas, bug reports, and contributions.

<br>

Stay tuned, Djangonauts ❤️

[pypi-version]: https://img.shields.io/pypi/v/djangoasyncframework.svg
[pypi]: https://pypi.org/project/djangoasyncframework/
