django-planet

What's new in Django community blogs?

EuroPython 2025

July 15, 2025 » Paolo Melchiorre » [Archived Version]

EuroPython is the official European conference for the Python programming language.

Read More

Django News - DjangoCon US Early Bird Tickets - May 30th 2025

May 30, 2025 » Django News » [Archived Version]

News Python Release Python 3.14.0b2 Python 3.14.0b2 beta introduces deferred type annotations, t-string templating, improved error messages, and remote debugging support that may influence Django project testing. python.org Updates to Django Fixed #35629 -- Added support for async database connections and cursors. Enhances Django's ORM with asynchronous database connections and low-level cursor support for executing raw SQL queries, …

Read More

Give Your Django Admin X‑Ray Vision—Automatic Dead‑Link Detection

May 29, 2025 » REVSYS Blog » [Archived Version]

Stop link rot before users ever see it: this guide shows how one lightweight app scans your models, flags broken URLs, and slots neatly into any Django workflow.

Read More

PyCon Italia 2025

May 28, 2025 » Paolo Melchiorre » [Archived Version]

PyCon Italia is the national conference where professionals, researchers and enthusiasts of the most beautiful programming language gather together.

Read More

Claude can make mistakes

May 27, 2025 » Carlton's latest posts. » [Archived Version]

Please double-check responses, the little warning goes. My Dad is coming to visit, and I wanted to think about some examples to discuss with him about AI. I know he'll want to talk about it. He knows a lot about golf. He's played his whole life, and it was his industry when working. He's an expert, and so golf topics are perfect for making the points I'd want to. I asked Claude Sonnet 4, "What was the top 10 at last years us masters?". This is the sort of question that I see folks putting to…

Read More

How I'm bundling frontend assets using Django and rspack these days

May 26, 2025 » Matthias Kestenholz » [Archived Version]

How I’m bundling frontend assets using Django and rspack these days I last wrote about configuring Django with bundlers in 2018: Our approach to configuring Django, Webpack and ManifestStaticFilesStorage. An update has been a long time coming. I wanted to write this down for a while already, but each time I started explaining how configuring rspack is actually nice I look at the files we’re using and switch to writing about something else. This time I managed to get through – …

Read More

Django News - Django Sprints on the Med? - May 23rd 2025

May 23, 2025 » Django News » [Archived Version]

News Django sprints? On the Med? A new initiative from Carlton Gibson and Paolo Melchiorre to organize three-day development sprints to get together and work on Django. buttondown.com DjangoCon US early-bird tickets are going fast! DjangoCon US 2025 early-bird tickets are now available at discounted rates through May for individuals and corporate attendees in Chicago. djangocon.us Django Commons launched a website…

Read More

Musing on Django's querystring tag

May 22, 2025 » Carlton's latest posts. » [Archived Version]

Django's querystring tag was new in 5.1. It had a couple of fixes during the pre-release period, one release blocker in 5.1.7,, and now has a couple of behaviour tweaks pending in 6.0. The need for these showed up when people started using it. Let's assume that's it. From Sept '24 to Dec '25 to wait for corrections, that could have been resolved in a third-party version in a month. I think it's a great example of why straight to core is pretty much always a mistake.

Read More

Django, JavaScript modules and importmaps

May 22, 2025 » Matthias Kestenholz » [Archived Version]

How I’m using Django, JavaScript modules and importmaps together I have been spending a lot of time in the last few months working on django-prose-editor. First I’ve rebuilt the editor on top of Tiptap because I wanted a framework for extending the underlying ProseMirror and didn’t want to reinvent this particular wheel. While doing that work I noticed that using JavaScript modules in the browser would be really nice, but Django’s ManifestStaticFilesStorage doesn’t…

Read More

Why, in 2025, do we still need a 3rd party app to write a REST API with Django?

May 22, 2025 » The Django weblog » [Archived Version]

The question was asked to the president of the DSF this year at FOSDEM, after his talk. And it is clearly a legitimate one! But… is it True? Do we actually need a 3rd party app to write an API with Django? In a lot of cases, when you require a complex and full-featured API, I would recommend you do use one. Django REST Framework and Django Ninja being very sound choices with a bunch of nifty things you might need in a bigger project. But… what if what you need is a simple REST API that does CR…

Read More