03 Jan 2026
Django community aggregator: Community blog posts
Django Quiz 2025
Last month, I held another quiz at the December edition of Django London. The December quiz is an annual tradition at our meetup, a way of making this final event of the year more relaxed and giving away some nice prizes. This was the seventh quiz that I've presented, and the eighth overall.
Here's an action shot taken by one of my co-organizers:

Below is the quiz itself, so you can try it at home. Answers follow at the end, with some extra explanation. Dates refer to December 2025, so if you're reading in the future, take that into consideration. (Posting a little late this time, so happy new year!)
Enjoy!
The quiz
2. Which of these databases does core Django support?
- MongoDB
- Oracle
- Microsoft SQL Server
- A bunch of YAML files
3. Which of the below names is not a current Django Fellow?
- Jacob Tyler Walls
- Natalia Bidart
- Sarah Boyce
- Django Reinhardt
4. Who manages the Django project?
- The Python Software Foundation
- Adrian Holovaty
- The Django Software Foundation
- Anyone who lists Django as a skill on LinkedIn
6. What is the modern API for HTTP request headers?
request.hrequest.METArequest.headersrequest.get_me_a_header
7. What does CSP stand for?
- Content Security Policy
- Contributed Security Patches
- Callable Script Parameters
- Crazy Secure Python
8. What is the new decorator to define a background task?
@task@background_task@background@do_it_later
9. In which city will DjangoCon Europe 2026 be held?
- Athens, Greece
- Zagreb, Croatia
- Dublin, Ireland
- Hell, Norway
10. How do you use Django's test client to make a GET request?
Client.get(url)self.client.get(url)self.client.fetch("GET", url)llm.prompt(f"Check this URL with GET: {url}")
Okay, now the answers
1. How old is Django this year?
🎂 Django was released in December 2005, making it 20 years old this year.
2. Which of these databases does core Django support?
Django has supported Oracle since 2006!
3. Which of the below names is not a current Django Fellow?
Django Reinhardt was a jazz guitarist, from whom the framework takes its name. Jacob Tyler Walls, Natalia Bidart, and Sarah Boyce are the current Django Fellows.
4. Who manages the Django project?
The Django Software Foundation is a US non-profit with the aim of promoting, supporting, and advancing the Django web framework.
5. What is the latest version of Django?
Django 6.0 is the latest version, as of December 3rd, 2025. See my "what's new post" for highlights.
6. What is the modern API for HTTP request headers?
request.headers is the new apprach, added in Django 2.2 (2019), superseding the older request.META approach. It acts as a case-insensitive mapping. For example, to access the User-Agent header:
def index(request):
user_agent = request.headers.get("user-agent", "")
...
7. What does CSP stand for?
CSP stands for Content Security Policy, a security feature that helps prevent XSS attacks, as newly supported in Django 6.0!
8. What is the new decorator to define a background task?
The @task decorator is new in Django 6.0 for defining background tasks, which you can use like:
from django.tasks import task
from example.models import User
@task
def send_welcome_email(user_id):
user = User.objects.get(id=user_id)
...
9. In which city will DjangoCon Europe 2026 be held?
DjangoCon Europe 2026 will be held in Athens, Greece. See you there?
10. How do you use Django's test client to make a GET request?
A testing classic! Use self.client.get(url) to make a GET request with Django's test client, like:
from django.test import TestCase
class IndexTests(TestCase):
def test_success(self):
response = self.client.get("/index/")
assert response.status_code == 200
...
11. Which ORM method returns a dictionary of PKs to model instances?
The Model.objects.in_bulk() method returns a dictionary of primary keys to model instances. For example:
In [1]: Book.objects.in_bulk([1, 2, 3])
Out[1]:
{1: <Book: Brave New World (id=1)>,
2: <Book: Slaughterhouse-Five (id=2)>,
3: <Book: 1984 (id=3)>}
12. What's the HTML tag for a dialog?
The <dialog> element has been available since 2022, and was extended by the Invoker Commands API this year. You can now make a <dialog> that is opened by a <button> without any JavaScript like so:
<button commandfor=subscribers command=show-modal>
View subscribers
</button>
<dialog id=subscribers>
<button commandfor=mydialog command=close>Close</button>
<h2>Subscribers</h2>
<!-- Insert contents here -->
</dialog>
Short, sweet, and powerful.
Fin
I hope you have enjoyed reading through doing this quiz. You can see the previous year's quizzes in the "related posts" section below.
May your 2026 be filled with many joyful hours building with Django,
-Adam
03 Jan 2026 6:00am GMT
02 Jan 2026
Django community aggregator: Community blog posts
Django News - 🎮 Django Is Now a Video Game Framework - Jan 2nd 2026
News
DSF member of the month - Clifford Gama
Clifford Gama, DSF member and Triage and Review contributor, merged several Django core PRs and investigates performance and WeasyPrint PDF generation improvements.
PyPI in 2025: A Year in Review - The Python Package Index Blog
PyPI strengthened security and organization features in 2025, adding trusted publishing, attestations, improved 2FA, malware response, and organization management enhancements.
Updates to Django
Today, "Updates to Django" is presented by Raffaella from Djangonaut Space! 🚀
Last week we had 19 pull requests merged into Django by 15 different contributors - including 5 first-time contributors! Congratulations to Duane Hilton, Ankan Giri, guro-Ishiguro, Sean Reed, and Yilei for having their first commits merged into Django - welcome on board!
News in Django 6.0:
- Fixed a regression where
path()routes defined usinggettext_lazy()failed to resolve correctly (#36796). - Fixed a regression that caused
bulk_create()to crash when introspecting the connection on SQLite (#36818). - Fixed a crash caused by infinite recursion when calling
repr()on an unevaluateddjango.utils.csp.LazyNonce instance (#36810). - Fixed a bug where management command colorized help (introduced in Python 3.14) ignored the
--no-coloroption and theDJANGO_COLORSsetting (#36376). - Fixed a visual regression for admin form fields grouped under a
<fieldset>in Safari (#36807). - The
iexact=Nonelookup onJSONFieldkey transforms now matches JSONnull, to match the behavior ofexact=Noneon key transforms. Previously, it was interpreted as anisnulllookup.
Django Newsletter
Articles
DOOM in Django: testing the limits of LiveView at 600.000 divs/seconds
Yep, DOOM in Django. That's right. Django LiveView streams ViZDoom as 100x100 pixel frames mapped to 10,000 divs at 60 FPS, sustaining about 600000 divs per second reliably.
Django is now a video game framework.
How uv got so fast
uv achieves orders of magnitude faster Python installs by leveraging modern packaging standards, dropping legacy compatibility, and using parallel downloads, global caching, and Rust optimizations.
Django On The Med: A Contributor Sprint Retrospective
A personal retrospective on Django On The Med, three months later. From the first idea to the actual contributor sprint, and how a simple format based on focused mornings and open afternoons created unexpected value for people and the Django open source community.
Raffi's 2025 Recap ✨
Raffi reflects on a busy and rewarding 2025 filled with speaking at and attending major Django and Python conferences, organizing and volunteering across community initiatives, contributing to Django News, and building small tools to support sustainable open source work.
Ryan Cheley's Year in Review 2025
Ryan reflects on a milestone year spanning a long-awaited promotion into senior leadership, major infrastructure and healthcare IT wins, deepening involvement in the Django community including talks and DSF board leadership, a self-hosting migration, and meaningful family, music, and hockey moments that set the tone for a more intentional 2026.
Priya's My First Newsletter (And 2025 Archive)
Priya summarizes 2025 work on Djangonaut Space, community focused conference talks, CI/CD ops notes, and her election to the 2026 Django Software Foundation Board.
Tim Schilling's 2025 - My year in review
Tim Schilling reflects on a year defined by trying new things, from major personal changes and extensive travel to deep community leadership across DjangoCon, Djangonaut Space, the Steering Council, and multiple open-source projects.
Jake versus 2025
Jake's 2025 year-in-review reflects a whirlwind year of personal milestones and deep Django community impact, from buying a house and running a half marathon to shipping django.tasks, joining the Django security team, speaking at PyCon UK, and navigating how AI is reshaping the web and independent publishing.
Django Job Board
Senior Python Developer at Cial Dun & Bradstreet
Software Engineer at Internet Archive
Founding Full-Stack Senior Engineer (UK ONLY) - Fully Remote at MyDataValue
Python/Django Senior Application Security Engineer at Energy Solutions
Python / Django Developer at Client of Foxley Talent
Staff Software Engineer at Bluebird Kids Health
Django Newsletter
Projects
tanrax/django-interactive-frameworks-benchmark
Performance comparison of Django's main interactive frameworks: LiveView, Reactor, django-htmx, Unicorn, and SSR.
smattymatty/Django-Mercury-Performance-Testing
Quickly & Ergonomically transform your Django Tests to track performance statistics like response time, queries, memory usage, and more! Optional Educational Guidance for Beginners, teaching good Performance Practices for Django Models, Views, and Serializers.
This RSS feed is published on https://django-news.com/. You can also subscribe via email.
02 Jan 2026 5:00pm GMT
30 Dec 2025
Django community aggregator: Community blog posts
Django On The Med: A Contributor Sprint Retrospective
A personal retrospective on Django On The Med, three months later. From the first idea to the actual contributor sprint, and how a simple format based on focused mornings and open afternoons created unexpected value for people and the Django open source community.
30 Dec 2025 5:00am GMT