Metadata-Version: 2.1
Name: unfazed
Version: 0.0.2
Summary: a django-like async python web framework
License: BSD 3-Clause "New" or "Revised"
Author: xin.zhou
Author-email: zhouxin576@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: aerich (>=0.7.2,<0.8.0)
Requires-Dist: asgiref (>=3.8.1,<4.0.0)
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: jinja2 (>=3.1.3,<4.0.0)
Requires-Dist: orjson (>=3.10.3,<4.0.0)
Requires-Dist: pydantic (>=2.6.3,<3.0.0)
Requires-Dist: starlette (>=0.37.2,<0.38.0)
Requires-Dist: tortoise-orm (>=0.21.6,<0.22.0)
Requires-Dist: uvicorn (>=0.28.0,<0.29.0)
Description-Content-Type: text/markdown

Unfazed
=====

async only python web framework, still in development


```bash

pip install unfazed

unfazed-cli startproject -n myproject

cd myproject/src/backend

docker-compose up -d
docker-compose exec backend bash

# run command inside container

make run

# add app to project
python manage.py startapp -n myapp

```
