FastAPI with Django ORM
More details are here.
$ tree -L 3 -I '__pycache__|.venv|staticfiles' -P '*.py'
.
├── manage.py
├── mysite
│ ├── __init__.py
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
└── polls
├── __init__.py
├── adapters
│ └── __init__.py
├── admin.py
├── apps.py
├── migrations
│ ├── 0001_initial.py
│ └── __init__.py
├── models
│ └── __init__.py
├── routers
│ ├── __init__.py
│ ├── choices.py
│ └── questions.py
├── schemas
│ └── __init__.py
└── tests.py
7 directories, 18 files
models
: Django ORMsrouters
: FastAPI routersschemas
: Pydantic modelsadapters
: Converting Django ORMs to Pydantic models
poetry install
./manage.py migrate
./manage.py shell
>>> from polls.models import Choice, Question
>>> from django.utils import timezone
>>> q = Question(question_text="What's new?", pub_date=timezone.now())
>>> q.save()
$ uvicorn mysite.asgi:fastapp --reload
...
$ ./manage.py collectstatic --noinput # generate static files for django admin
...
$ uvicorn mysite.asgi:application --port 8001 --reload # Django
...
$ curl http://localhost:8000/question/
{"items":[{"question_text":"What's new?","pub_date":"2021-03-29T04:18:54.724432+00:00"}]}%
# in mysite/settings.py
MOUNT_DJANGO_APP = True
Then http://localhost:8000/django/admin
http://localhost:8000/docs
http://localhost:8001/admin
pre-commit install
pre-commit run --all-files