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

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

     23.07.2025       Выпуск 606 (21.07.2025 - 27.07.2025)       Вопросы и обсуждения
     23.07.2025       Выпуск 606 (21.07.2025 - 27.07.2025)       Статьи

Making a Simple HTTP Server With Asyncio Protocols

Learn how to build a fast, minimal HTTP server using asyncio.Protocol, complete with routing, parsing, and response handling from scratch.

     25.07.2025       Выпуск 606 (21.07.2025 - 27.07.2025)       Релизы

numpy - 2.3.2

Модуль для работы с многомерными массивами. Скачать можно по ссылке: https://pypi.python.org/pypi/numpy/

     23.07.2025       Выпуск 606 (21.07.2025 - 27.07.2025)       Релизы
     23.07.2025       Выпуск 606 (21.07.2025 - 27.07.2025)       Статьи

Logging an Uncaught Exception

Uncaught exceptions will crash an application. If you don’t know how to log these, it can be difficult to troubleshoot such a crash.

     19.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Вопросы и обсуждения
     19.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Статьи

Squall - TUI SQLite Editor

Squall is a SQLite viewer and editor that runs in your terminal.

     21.07.2025       Выпуск 606 (21.07.2025 - 27.07.2025)       Релизы

virtualenv - 20.32.0

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

     18.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Статьи
     18.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Статьи

Введение в PYJSX

JSX (JavaScript XML) в Python

     19.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Релизы

jsonschema - 4.25.0

Валидатор JSON данных. Скачать можно по ссылке: https://pypi.python.org/pypi/jsonschema

     17.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Статьи

How to think about LLMs for OSS development

keynote talk at PyCon Colombia 2025

     16.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Статьи

Using DuckDB With Pandas, Parquet, and SQL

Learn about DuckDB’s in-process architecture and SQL capabilities which can enhance performance and simplify data handling.

     18.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Релизы

django-cms - 5.0.2

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

     16.07.2025       Выпуск 605 (14.07.2025 - 20.07.2025)       Статьи

How Global Variables Work in Python Bytecode

To better understand how Python handles globals, this article walks through dynamic name resolution, the global store, and how monkey patching works at the bytecode level.