Hey @treyhunner , thanks for your article on how to use Python 3.13 REPL with Django.
I took the idea and packaged it as installable app, so one does not need to create `shell.py` inside one of the existing apps.
@danielfeldroy on the same note, my favorite is when using pydantic instead of (example of django-ninja code):
from typing import Optional
class Foo(Schema):
bar: Optional[int]
one can do:
class Foo(Schema):
bar: int | None
It saves an import and looks cleaner.
Hey @treyhunner , thanks for your article on how to use Python 3.13 REPL with Django.
I took the idea and packaged it as installable app, so one does not need to create `shell.py` inside one of the existing apps.
@key_chan Sure, markdown is just slight markup over plain text.
This is one example from my github project: https://github.com/selectnull/ave
Just see how it's done by reading README.md file.