IT-новости про Python, которые стоит знать

Собрали в одном месте самые важные ссылки
и сделали Тренажер IT-инцидентов для DevOps/SRE

     03.04.2026       Выпуск 642 (30.03.2026 - 05.04.2026)       Релизы

django-debug-toolbar - 6.3.0

Панель отладки и профилирования Django приложений. Скачать можно по ссылке: https://pypi.python.org/pypi/django-debug-toolbar/

     20.03.2026       Выпуск 640 (16.03.2026 - 22.03.2026)       Интересные проекты, инструменты, библиотеки

django-security-label: A third-party package to anonymize data in your models

Define data masking rules directly on your Django models and let PostgreSQL enforce anonymization automatically, keeping sensitive data out of your app layer by design.

     18.03.2026       Выпуск 640 (16.03.2026 - 22.03.2026)       Статьи

Avoiding empty strings in non-nullable Django string-based model fields

Django silently converts None values in non-nullable string fields into empty strings, but a simple CheckConstraint can enforce truly required values and prevent empty data from slipping into your database.

     15.03.2026       Выпуск 639 (09.03.2026 - 15.03.2026)       Новости

Sunsetting Jazzband

Закрытие значимой группы разработчиков, которые создавали и поддерживали популярные django пакеты (django-debug-toolbar, django-simple-history, django-cookie-consent)

     13.03.2026       Выпуск 639 (09.03.2026 - 15.03.2026)       Статьи

Avoiding empty strings in non-nullable Django string-based model fields

Django silently converts None values in non-nullable string fields into empty strings, but a simple CheckConstraint can enforce truly required values and prevent empty data from slipping into your database.

     06.03.2026       Выпуск 638 (02.03.2026 - 08.03.2026)       Статьи

Making Django unique constraints case-insensitive (with no downtime)

Fix Django’s case-sensitive unique constraint pitfalls by cleaning duplicates, adding Lower() constraints, and safely migrating with PostgreSQL CONCURRENTLY to avoid downtime.

     05.03.2026       Выпуск 638 (02.03.2026 - 08.03.2026)       Релизы

django-cms - 4.1.10

Легкая в использовании и удобная для разработки CMS. Скачать можно по ссылке: https://pypi.python.org/pypi/django-cms/

     04.03.2026       Выпуск 638 (02.03.2026 - 08.03.2026)       Релизы

Django - 6.0.3

Мощный web-фреймворк. Скачать можно по ссылке: https://pypi.python.org/pypi/Django/

     04.03.2026       Выпуск 638 (02.03.2026 - 08.03.2026)       Релизы

Django - 5.2.12

Мощный web-фреймворк. Скачать можно по ссылке: https://pypi.python.org/pypi/Django/

     04.03.2026       Выпуск 638 (02.03.2026 - 08.03.2026)       Релизы

Django - 4.2.29

Мощный web-фреймворк. Скачать можно по ссылке: https://pypi.python.org/pypi/Django/

     27.02.2026       Выпуск 637 (23.02.2026 - 01.03.2026)       Статьи

The *1000 most popular* Django packages

Based on GitHub stars and PyPI download numbers.

     22.02.2026       Выпуск 636 (16.02.2026 - 22.02.2026)       Релизы

django-cms - 5.0.6

Легкая в использовании и удобная для разработки CMS. Скачать можно по ссылке: https://pypi.python.org/pypi/django-cms/

     20.02.2026       Выпуск 636 (16.02.2026 - 22.02.2026)       Интересные проекты, инструменты, библиотеки

dj-urls-panel

Visualize Django URL routing inside the Django Admin, including patterns, views, namespaces, and conflicts.

     11.02.2026       Выпуск 635 (09.02.2026 - 15.02.2026)       Статьи

Sorting Strategies for Optional Fields in Django

How to control NULL value placement when sorting Django QuerySets using F() expressions.