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

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

     08.11.2023       Выпуск 516 (06.11.2023 - 12.11.2023)       Статьи

Django Hotwire Tutorial

Hotwire is an alternative approach to building modern web applications without using much JavaScript by sending HTML instead of JSON over the wire.

     09.11.2023       Выпуск 516 (06.11.2023 - 12.11.2023)       Релизы

Werkzeug - 2.3.8

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

     05.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Статьи

Adding Full Text Search to Your Django App with django-watson

Learn how to supercharge your Django app with full-text search using Django-Watson. Dive deep into Postgres magic and boost search functionality.

     06.11.2023       Выпуск 516 (06.11.2023 - 12.11.2023)       Релизы

kombu - 5.3.3

Фреймворк для работы с AMQP. Скачать можно по ссылке: https://pypi.python.org/pypi/kombu/

     06.11.2023       Выпуск 516 (06.11.2023 - 12.11.2023)       Релизы

amqp - 5.2.0

AMQP-клиент. Скачать можно по ссылке: https://pypi.python.org/pypi/amqp/

     03.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Интересные проекты, инструменты, библиотеки

ambient-innovation/django-pony-express

Class-based emails for Django shipping with a test suite.

     03.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Статьи

New goodies in Django 5.0

From Django Fellow Mariusz Felisiak, an exploration of the "deluge" of amazing new features added in Django 5.0

     04.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Релизы

selenium - 4.15.2

Модуль для автоматизации тестирования web-приложений. Скачать можно по ссылке: https://pypi.python.org/pypi/selenium/

     03.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Статьи
     03.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Статьи
     01.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Статьи

From Chaos to Cohesion: Architecting Your Own Monorepo

A monorepo approach means keeping the code from all your projects in one place. It requires changing your tooling approach, but means better dependency management. This article shows you how to build a simple python monorepo using GitHub Actions as a CI/CD tool.

     03.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Релизы

SQLAlchemy - 2.0.23

Библиотека работы с базами данных. Скачать можно по ссылке: https://pypi.python.org/pypi/SQLAlchemy/

     02.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Релизы

pymongo - 4.6.0

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

     01.11.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Релизы

Django - 4.2.7

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

     31.10.2023       Выпуск 515 (30.10.2023 - 05.11.2023)       Статьи

How to Use Type Hints for Multiple Return Types in Python

In this tutorial, you'll learn to specify multiple return types using type hints in Python. You'll cover working with one or several pieces of data, defining type aliases, and type checking with a third-party static type checker tool.