Best of Django โ€” October 2024

  1. 1
    Article
    Avatar of rpythonReal Pythonยท2y

    Python News Roundup: October 2024 โ€“ Real Python

    October is a significant month for Python with the release of Python 3.13, featuring improvements such as a new interactive interpreter, colored tracebacks, a free-threaded version without the GIL, and an experimental JIT compiler. The release was delayed to October 7, 2024, to remove a problematic incremental garbage collector. Meanwhile, Python 3.8 reaches its end-of-life, and DjangoCon US 2024 featured keynotes and developer talks. Additionally, Polars has enhanced its plotting capabilities with Altair, offering native support and fewer dependencies.

  2. 2
    Article
    Avatar of planetpythonPlanet Pythonยท2y

    [October 2024] Python Monthly Newsletter ๐Ÿ’ป๐Ÿ

    The latest Python Monthly Newsletter covers key updates and resources in the Python world. This includes guidance on when to upgrade to Python 3.13, debugging tips using pdb and breakpoints, Django project ideas, and a dive into Python's Free-threaded feature from PEP-703. It also explores the latest happenings in the AI market, notable advancements like Meta Movie Gen, and a variety of tech news highlights from Apple, Google, and more.

  3. 3
    Article
    Avatar of planetpythonPlanet Pythonยท2y

    Django and the Python 3.13 REPL

    Discover how to integrate the new Python 3.13 REPL into your Django project despite the default shell showing the old Python REPL. Learn about a workaround solution using the `_pyrepl` package, while also understanding the stability trade-offs. The Django `shell` command can be customized to try different REPLs in sequence, including IPython, bpython, and the new Python 3.13 REPL, falling back to the old one if needed. For those using the default Python REPL, the new REPL presents a significant upgrade in usability and features.