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

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

     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.

     13.03.2026       Выпуск 639 (09.03.2026 - 15.03.2026)       Статьи
     13.03.2026       Выпуск 639 (09.03.2026 - 15.03.2026)       Статьи
     10.03.2026       Выпуск 639 (09.03.2026 - 15.03.2026)       Статьи
     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.

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

Managing Shared Data Science Code With Git Submodules

Learn how to manage shared code across projects using Git submodules. Prevent version drift, maintain reproducible workflows, and support team collaboration with practical examples.

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

How the Self-Driving Tech Stack Works

A technical guide to how self-driving cars actually work. CAN bus protocols, neural networks, sensor fusion, and control system with open source implementations, most of which can be accessed through Python.

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

Unit Testing: Catching Speed Changes

This second post in a series covers how to use unit testing to ensure the performance of your code. This post talks about catching differences in performance after code has changed.

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

The *1000 most popular* Django packages

Based on GitHub stars and PyPI download numbers.

     27.02.2026       Выпуск 637 (23.02.2026 - 01.03.2026)       Статьи
     24.02.2026       Выпуск 637 (23.02.2026 - 01.03.2026)       Статьи
     19.02.2026       Выпуск 636 (16.02.2026 - 22.02.2026)       Статьи

LangChain Python Tutorial: 2026’s Complete Guide

If you’ve read the blog post How to Build Chatbots With LangChain, you may want to know more about LangChain. This blog post will dive deeper into what LangChain offers and guide you through a few more real-world use cases.

     18.02.2026       Выпуск 636 (16.02.2026 - 22.02.2026)       Статьи

5 Essential Itertools for Data Science

Learn 5 essential itertools methods to eliminate manual feature engineering waste. Replace nested loops with systematic functions for interactions, polynomial features, and categorical combinations.

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

ScrapeGraph - Natural Language Web Scraping

Web scraping without selector maintenance. ScrapeGraphAI uses LLMs to extract data from any site using plain English prompts and Pydantic schemas.