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

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

     17.11.2025       Релизы

scrapy - 2.13.4

Гибкий фреймворк для написания web-пауков (парсеров). Скачать можно по ссылке: https://pypi.python.org/pypi/scrapy

     17.11.2025       Релизы

numpy - 2.3.5

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

     14.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Вопросы и обсуждения

The Real Python Podcast – Episode #274: Preparing Data Science Projects for Production

How do you prepare your Python data science projects for production? What are the essential tools and techniques to make your code reproducible, organized, and testable? This week on the show, Khuyen Tran from CodeCut discusses her new book, "Production Ready Data Science."

     14.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Релизы
     14.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Статьи
     14.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Релизы

pylint - 4.0.3

Статический анализатор Python-кода. Скачать можно по ссылке: https://pypi.python.org/pypi/pylint/

     11.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Вопросы и обсуждения
     11.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Статьи

Python 3.14 Released and Other Python News for November 2025

Python 3.14 is officially out, Python 3.15 begins, and Python 3.9 reaches end of life. Plus, Django 6.0 first beta released, new PEPs, and more Python news.

     12.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Релизы

django-cms - 5.0.5

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

     12.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Релизы

pytest - 9.0.1

Простой мощный инструмент тестирования в Python. Скачать можно по ссылке: https://pypi.python.org/pypi/pytest/

     12.11.2025       Выпуск 622 (10.11.2025 - 16.11.2025)       Релизы

pymongo - 4.15.4

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

     07.11.2025       Выпуск 621 (03.11.2025 - 09.11.2025)       Статьи
     06.11.2025       Выпуск 621 (03.11.2025 - 09.11.2025)       Статьи
     06.11.2025       Выпуск 621 (03.11.2025 - 09.11.2025)       Статьи

MarkItDown: Convert Documents Into LLM-Ready Markdown

The MarkItDown library lets you quickly turn PDFs, Office files, images, HTML, audio, and URLs into LLM-ready Markdown. In this tutorial, you’ll compare MarkItDown with Pandoc, run it from the command line, use it in Python code, and integrate conversions into AI-powered workflows.

     05.11.2025       Выпуск 621 (03.11.2025 - 09.11.2025)       Статьи

Regex, Pregex, or Pyparsing?

Parsing messy support tickets? This post walks through real-world examples of Python techniques for extracting structured data from unstructured text. It compares the re module for classic pattern matching, pregex for cleaner and more readable regex construction, and pyparsing for more complex structures.