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

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

     05.07.2021       Выпуск 394 (05.07.2021 - 11.07.2021)       Статьи

Custom Permission Classes in Django REST Framework

This article looks at how to build custom permission classes in Django REST Framework (DRF).

     04.07.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Статьи
     03.07.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Статьи
     01.07.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Интересные проекты, инструменты, библиотеки

css-inline - Blazing fast CSS inliner

The project inlines CSS styles into "style" attributes. Written in Rust with Mozilla's Servo project components

     01.07.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Релизы
     30.06.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Релизы
     30.06.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Статьи
     30.06.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Статьи

How to use Python’s HTTPStatus with Django

A “magic number” is the anti-pattern of using a number directly rather than storing it in a descriptive variable name. In web code HTTP status codes are often used as magic numbers, perhaps because web developers memorize common codes such as 200 and 404. In Python, we can avoid such magic with descriptive references from the standard library’s http.HTTPStatus enum.

Let’s look at two ways to use HTTPStatus in our Django code.

     29.06.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Статьи
     28.06.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Статьи
     28.06.2021       Выпуск 393 (28.06.2021 - 04.07.2021)       Статьи

Python⇒Speed: Measuring the memory usage of a Pandas DataFrame

How much memory are your Pandas DataFrame or Series using? Pandas provides an API for measuring this information, but a variety of implementation details means the results can be confusing or misleading.