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

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

     22.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Релизы

lxml - 6.0.1

Мощный и быстрый модуль для обработки XML/HTML. Скачать можно по ссылке: https://pypi.python.org/pypi/lxml/

     20.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Статьи

Subinterpreters and Asyncio

Subinterpreters are new and not well understood by the community, a library to abstract away some of the complexities is needed, and asyncio is one way to do that.

     19.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Вопросы и обсуждения

Python Bytes: #445 Auto-activate Python virtual environments for any project

Очередной выпуск англоязычного подкаста Python Bytes

     19.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Статьи

The State of Python 2025

Тренды в Python, какие технологии и подходы более популярны относительно других.

     19.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Статьи
     20.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Релизы

pymongo - 4.14.1

Python интерфейс для MongoDB. Скачать можно по ссылке: https://pypi.python.org/pypi/pymongo/

     20.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Релизы

Flask - 3.1.2

Web-фреймворк на основе Werkzeug, Jinja2 и благих намерениях. Скачать можно по ссылке: https://pypi.python.org/pypi/Flask/

     18.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Статьи
     19.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Релизы

jsonschema - 4.25.1

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

     19.08.2025       Выпуск 610 (18.08.2025 - 24.08.2025)       Релизы

requests - 2.32.5

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

     15.08.2025       Выпуск 609 (11.08.2025 - 17.08.2025)       Статьи

Combining Django signals with in-memory LRU cache

It's easy to combine functools.lru_cache with Django signals to get a good memoization pattern on Django ORM queries.

     15.08.2025       Выпуск 609 (11.08.2025 - 17.08.2025)       Учебные материалы
     15.08.2025       Выпуск 609 (11.08.2025 - 17.08.2025)       Статьи
     14.08.2025       Выпуск 609 (11.08.2025 - 17.08.2025)       Статьи

Python Wheels: from Tags to Variants

The story of how the Python Wheel Variant design was developed

     13.08.2025       Выпуск 609 (11.08.2025 - 17.08.2025)       Статьи

Python Text Matching Beyond Regex

Text similarity is a fundamental challenge in data science. For data that contains duplicates, clustering content, or building search systems, this article explores using 4 different tools to solve this Regex, difflib, RapidFuzz, and Sentence Transformers