django-planet

What's new in Django community blogs?

Locomotive Engineer / New Model Field - Building SaaS with Python and Django #156

March 23, 2023 » Django on Matt Layman » [Archived Version]

In this episode, I did another Exercism problem in Python that focused on Python packing and unpacking of arguments. Once the exercise was complete, I started on a new feature with the homeschool app. We added a new model field in preparation for the changes. After that, I removed django-stubs because it wasn’t a good fit for my project.

Read More

Locomotive Engineer / New Model Field - Building SaaS #156

March 23, 2023 » Django on Matt Layman » [Archived Version]

In this episode, I did another Exercism problem in Python that focused on Python packing and unpacking of arguments. Once the exercise was complete, I started on a new feature with the homeschool app. We added a new model field in preparation for the changes. After that, I removed django-stubs because it wasn’t a good fit for my project.

Read More

Django Performance Optimization Tips

March 20, 2023 » TestDriven.io » [Archived Version]

This article looks at where potential performance issues can occur in a Django application and how to address them in order to speed up your app.

Read More

Want to host DjangoCon Europe 2024?

March 20, 2023 » The Django weblog » [Archived Version]

DjangoCon Europe 2023 will be held May 29th-June 2nd in Edinburgh, Scotland, but we're already looking ahead to next year's conference. Could your town - or your football stadium, circus tent, private island or city hall - host this wonderful community event? Hosting a DjangoCon is an ambitious undertaking. It's hard work, but each year it has been successfully run by a team of community volunteers, not all of whom have had previous experience - more important is enthusiasm, organisational ski…

Read More

Django 4.2 release candidate 1 released

March 20, 2023 » The Django weblog » [Archived Version]

Django 4.2 release candidate 1 is the final opportunity for you to try out the farrago of new features before Django 4.2 is released. The release candidate stage marks the string freeze and the call for translators to submit translations. Provided no major bugs are discovered that can't be solved in the next two weeks, Django 4.2 will be released on or around April 3. Any delays will be communicated on the Django forum. Please use this opportunity to help find and fix bugs (which should be repo…

Read More

Upgrading Django Projects - Introduction

March 20, 2023 » Screaming At My Screen » [Archived Version]

One questions I am asked quite often is how to upgrade larger projects to a newer Django release. While upgrading to a newer minor release is usually really easy and does not require much work it can become a bit harder upgrading to a new major release. My oldest project points back to 0.9x, so it has seen some upgrades, and there are certain patters that proved to work pretty well. Upgrading a Django project is not harder or easier than upgrading any other project of the same size which is u…

Read More

Individual member of the Django Software Foundation

March 20, 2023 » Screaming At My Screen » [Archived Version]

Last Saturday, somewhen late at night when we came back home from our trip to the city, I received an unexpected mail. I was nominated, seconded and approved to be an Individual Member of the Django Software Foundation. This came completely unexpected and honestly caught me a bit off guard. I let it sink in a bit and accepted the invitation on Sunday, with a nice glass of scotch next to me. I have been using Django since 0.96-svn or so and I have been using it to ship production software for …

Read More

Managing state in Django models

March 20, 2023 » Screaming At My Screen » [Archived Version]

A Django model often will contain some form of state. And there will most likely be events which modify the state. While those two things are not always called like this, the concept still exists. More often than not you will find a view controller assigning the new state to an instance of a model when certain conditions are met. In some cases you will see the event code being abstracted to make it easier to test, maybe in a separate function or class, maybe to a model method. And more often th…

Read More

Adding two factor authentication to Django admin

March 20, 2023 » Screaming At My Screen » [Archived Version]

As my dissatisfaction with WordPress grew, I did the only Reasonable Thing(tm) and decided to roll out my own CMS again. Which means I do not only have the joy of building a tool exactly fitting my needs, but I also have to build some of the functionality I would expect every production-ready system to provide. Account security in Django's contrib.auth and contrib.admin package did not change a lot over the last decade, but in 2020 I expect some basic functionality from every system, like two f…

Read More

Thoughts on „Surviving Django“

March 20, 2023 » Screaming At My Screen » [Archived Version]

Daniele, the author of psycopg2, wrote an interesting post about Django and its migration system. Having used Django for well over a decade and having worked on projects either handed to me or greenfield at different scales I cannot agree with his arguments as they are stated. The migration and ORM system does solve a far larger problem than allowing web apps to switch between databases. Djangos migration system is primarily a developer tool. A rather excellent one I cannot praise enough. It a…

Read More