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

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

     06.05.2024       Выпуск 543 (06.05.2024 - 12.05.2024)       Статьи
     30.04.2024       Выпуск 542 (29.04.2024 - 05.05.2024)       Статьи

Django: An admin extension to prevent state leaking between requests

Here’s a small protection I added to a project a few years ago. I was considering it again since I saw a similar potential bug in a Django middleware. Long live the ModelAdmin instances Django’s admin site is configured by the ModelAdmin class.

     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.

     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.

     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.

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

Django: Write-up on optimizing the system check framework

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

     08.03.2024       Выпуск 534 (04.03.2024 - 10.03.2024)       Статьи

How to spend less time writing Django tests

Autogenerating Django integration tests using Kolo and trace inversion.

     05.03.2024       Выпуск 534 (04.03.2024 - 10.03.2024)       Статьи

Deploying Django Apps in Kubernetes

As an open-source container orchestration platform that automates deployment, scaling, and load balancing, Kubernetes offers unparalleled resilience and flexibility in the management of your Django applications.

     17.02.2024       Выпуск 531 (12.02.2024 - 18.02.2024)       Статьи

The simplest way to add magic link sign-in using Django

A guide to add email sign-in (and verification) to Django using Gmail and others

     17.02.2024       Выпуск 531 (12.02.2024 - 18.02.2024)       Статьи

Django SQLite Benchmark

A detailed comparison of SQLite performance under various configurations compared to default settings.

     06.02.2024       Выпуск 530 (05.02.2024 - 11.02.2024)       Статьи

Django REST Framework and Vue versus Django and HTMX

This article compares the development experience with Vue and Django REST Framework against HTMX and Django.

     26.01.2024       Выпуск 528 (22.01.2024 - 28.01.2024)       Статьи
     12.01.2024       Выпуск 525 (08.01.2024 - 14.01.2024)       Статьи
     07.01.2024       Выпуск 524 (01.01.2024 - 07.01.2024)       Статьи

Legal and Stripe - Building SaaS with Python and Django #179

In this episode, we took care of the legal obligations of the site by setting up Terms of Service and a Privacy Policy page. Then we moved on to the next portion of signup, which is to configure Stripe to create customers and prepare, ultimately, to accept subscription payments.

     03.01.2024       Выпуск 524 (01.01.2024 - 07.01.2024)       Статьи
     29.12.2023       Выпуск 523 (25.12.2023 - 31.12.2023)       Статьи

Fine Tuning Python WSGI and ASGI applications for Flask, Django, and FastAPI

Exploring strategies for optimal Gunicorn, Uvicorn and Hypercorn configurations for Flask, Django, and FastAPI.

     24.12.2023       Выпуск 522 (18.12.2023 - 24.12.2023)       Статьи

Sign Up - Building SaaS with Python and Django #178

In this episode, we did some work on the sign up template. In the process, we added some base template styling, talked about branding, and considered the other elements that are required before we can turn on sign up for others. I also cover waffle as a feature flag tool.

     20.12.2023       Выпуск 522 (18.12.2023 - 24.12.2023)       Статьи

Create a Subscription SaaS Application With Django and Stripe

All the technical details of creating a subscription SaaS business using the Python-based Django web framework and Stripe payment processor.

     14.12.2023       Выпуск 521 (11.12.2023 - 17.12.2023)       Статьи

Database generated columns⁽³⁾: GeoDjango & PostGIS

An introduction to database generated columns, using PostgGIS, GeoDjango and the new GeneratedField added in Django 5.0.