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

Собрали в одном месте самые важные ссылки
читайте нас в Twitter

     19.04.2024       Выпуск 540 (15.04.2024 - 21.04.2024)       Статьи

7 simple examples using Django GeneratedField

Django 5.0 added a new feature, GeneratedField, which allows us to auto-calculate database fields. This article shows seven short examples of how to use it so the database performs calculations extremely quickly.

     19.04.2024       Выпуск 540 (15.04.2024 - 21.04.2024)       Статьи
     17.04.2024       Выпуск 540 (15.04.2024 - 21.04.2024)       Статьи
     12.04.2024       Выпуск 539 (08.04.2024 - 14.04.2024)       Статьи

How to optimize PostgreSQL queries from Django using pgMustard

A look at what pgMustard does and how to use it with the Django ORM, especially for dissecting slow queries.

     12.04.2024       Выпуск 539 (08.04.2024 - 14.04.2024)       Статьи
     11.04.2024       Выпуск 539 (08.04.2024 - 14.04.2024)       Статьи

Pydantic: Simplifying Data Validation

Discover the power of Pydantic, Python's most popular data parsing, validation, and serialization library. In this hands-on tutorial, you'll learn how to make your code more robust, trustworthy, and easier to debug with Pydantic.

     10.04.2024       Выпуск 539 (08.04.2024 - 14.04.2024)       Статьи

How to Set Up Pre-Commit Hooks

Maintaining code quality can be challenging no matter the size of your project or the number of contributors. Pre-commit hooks make it a little easier. This article provides a step-by-step guide to installing and configuring pre-commit hooks on your project.

     05.04.2024       Выпуск 538 (01.04.2024 - 07.04.2024)       Статьи
     03.04.2024       Выпуск 538 (01.04.2024 - 07.04.2024)       Статьи

Автопилот для X-Plane используя Python

X-Plane is a flight simulator, and Austin is using Python to create an autopilot using proportional integral derivative controllers.

     03.04.2024       Выпуск 538 (01.04.2024 - 07.04.2024)       Статьи

Designing a Pure Python Web Framework

This blog post talks about Reflex, a Python web framework. The post talks about what makes Reflex different from other frameworks and shows you sample starting code.

     29.03.2024       Выпуск 537 (25.03.2024 - 31.03.2024)       Статьи

Django Streaming HTTP Responses

How and when to use Streaming HTTP responses and when not to.

     28.03.2024       Выпуск 537 (25.03.2024 - 31.03.2024)       Статьи
     25.03.2024       Выпуск 537 (25.03.2024 - 31.03.2024)       Статьи

Django: Write-up on optimizing the system check framework

Оптимизация System check framework

     22.03.2024       Выпуск 536 (18.03.2024 - 24.03.2024)       Статьи
     22.03.2024       Выпуск 536 (18.03.2024 - 24.03.2024)       Статьи
     20.03.2024       Выпуск 536 (18.03.2024 - 24.03.2024)       Статьи

Model-View-Controller (MVC) in Python Web Apps: Explained With Lego

This tutorial conceptually explains the Model-View-Controller (MVC) pattern in Python web apps using Lego bricks. Finally understand this important architecture to streamline your web development process.

     14.03.2024       Выпуск 535 (11.03.2024 - 17.03.2024)       Статьи
     13.03.2024       Выпуск 535 (11.03.2024 - 17.03.2024)       Статьи

Python Deque Tutorial With 7 Example Use Cases

This tutorial teaches the mechanics of the data structure collections.deque, using seven example use cases where deque simplifies the implementation of a function.

     13.03.2024       Выпуск 535 (11.03.2024 - 17.03.2024)       Статьи

Understanding Context Manager and Its Syntactic Sugar

The Context Manager is gets used for all kind of interesting things around blocks of code. This article gives a background about the origins of the context manager, which problem it solves and how to use it.