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

Собрали в одном месте самые важные ссылки
консультируем про IT, Python

     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.

     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.

     26.10.2023       Выпуск 514 (23.10.2023 - 29.10.2023)       Статьи
     25.10.2023       Выпуск 514 (23.10.2023 - 29.10.2023)       Статьи

Progress on No-GIL CPython

This post sums up the progress and thinking on the no-GIL work in Python. It summarizes some of the PEPs involved as well as active conversations in the discussion groups.

     25.10.2023       Выпуск 514 (23.10.2023 - 29.10.2023)       Статьи
     25.10.2023       Выпуск 514 (23.10.2023 - 29.10.2023)       Статьи

Building Custom Middleware in FastAPI

Middleware in a web stack framework is able to intercept all requests allowing you to write common request processing code across all your views. This article shows you how to write middleware for FastAPI.

     20.10.2023       Выпуск 513 (16.10.2023 - 22.10.2023)       Статьи
     19.10.2023       Выпуск 513 (16.10.2023 - 22.10.2023)       Статьи
     17.10.2023       Выпуск 513 (16.10.2023 - 22.10.2023)       Статьи
     13.10.2023       Выпуск 512 (09.10.2023 - 15.10.2023)       Статьи
     11.10.2023       Выпуск 512 (09.10.2023 - 15.10.2023)       Статьи

Mastering Integration Testing With FastAPI

This article shows you how to use MongoMock and MockS3 to power your integration tests on a FastAPI based project.

     11.10.2023       Выпуск 512 (09.10.2023 - 15.10.2023)       Статьи

Hallucination Detection for Abstractive Summaries

Abstractive summary is an AI task that rephrases and condenses text content into a summary. This article is a deep dive into how to ensure correctness and the math involved in ensuring fluency, coherence, relevance, and consistency.

     04.10.2023       Выпуск 511 (02.10.2023 - 08.10.2023)       Статьи
     04.10.2023       Выпуск 511 (02.10.2023 - 08.10.2023)       Статьи
     02.10.2023       Выпуск 511 (02.10.2023 - 08.10.2023)       Статьи
     29.09.2023       Выпуск 510 (25.09.2023 - 01.10.2023)       Статьи
     28.09.2023       Выпуск 510 (25.09.2023 - 01.10.2023)       Статьи

Python 3.12 Preview: Static Typing Improvements

In this tutorial, you'll preview the new static typing features in Python 3.12. You'll learn about the new syntax for type variables, making generics simpler to define. You'll also see how @override lets you model inheritance and how you use typed dictionaries to annotate variable keyword arguments.

     26.09.2023       Выпуск 510 (25.09.2023 - 01.10.2023)       Статьи
     26.09.2023       Выпуск 510 (25.09.2023 - 01.10.2023)       Статьи

Python 3.12 Preview: Subinterpreters

In this tutorial, you'll preview one of the upcoming features of Python 3.12 and a proposed change to Python 3.13, addressing how subinterpreters work in the CPython program. The changes are described in PEP 684 and PEP 554.