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

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

     01.12.2023       Выпуск 519 (27.11.2023 - 03.12.2023)       Статьи
     30.11.2023       Выпуск 519 (27.11.2023 - 03.12.2023)       Статьи
     29.11.2023       Выпуск 519 (27.11.2023 - 03.12.2023)       Статьи
     22.11.2023       Выпуск 518 (20.11.2023 - 26.11.2023)       Статьи
     21.11.2023       Выпуск 518 (20.11.2023 - 26.11.2023)       Статьи
     19.11.2023       Выпуск 517 (13.11.2023 - 19.11.2023)       Статьи
     16.11.2023       Выпуск 517 (13.11.2023 - 19.11.2023)       Статьи
     15.11.2023       Выпуск 517 (13.11.2023 - 19.11.2023)       Статьи

Rust vs. Go, Java, and Python in AWS Lambda Functions

A performance comparison of JSON parsing in AWS Lambda functions using Rust, Go, Java, and Python.

     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.

     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.

     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

     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.

     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.