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

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

     26.07.2023       Выпуск 501 (24.07.2023 - 30.07.2023)       Статьи

Writing Python With VScode and Docker

A step-by-step guide on how to set up a Python environment using VSCode and Docker. It explains why you’d use these tools at all, and walks you through what you need to get them going.

     26.07.2023       Выпуск 501 (24.07.2023 - 30.07.2023)       Статьи

Debugging Crashes and Deadlocks in Python Using PyStack

Using PyStack’s “forbidden magic” to debug deadlocks, segmentation faults, crashes and other difficult bugs in Python

     21.07.2023       Выпуск 500 (17.07.2023 - 23.07.2023)       Статьи
     12.07.2023       Выпуск 499 (10.07.2023 - 16.07.2023)       Статьи
     11.07.2023       Выпуск 499 (10.07.2023 - 16.07.2023)       Статьи
     11.07.2023       Выпуск 499 (10.07.2023 - 16.07.2023)       Статьи
     11.07.2023       Выпуск 499 (10.07.2023 - 16.07.2023)       Статьи
     07.07.2023       Выпуск 498 (03.07.2023 - 09.07.2023)       Статьи

Unlocking Performance: A Guide to Async Support in Django

This guide provides valuable insights and practical tips for new and experienced developers to leverage async programming in Django for non-blocking operations, improved scalability, and enhanced responsiveness.

     07.07.2023       Выпуск 498 (03.07.2023 - 09.07.2023)       Статьи
     05.07.2023       Выпуск 498 (03.07.2023 - 09.07.2023)       Статьи

CLI Tools Hidden in the Python Standard Library

There are several modules in Python that are directly callable from the command line, including the ability to gzip and pretty print JSON. This article introduces you to what is available and how Simon discovered them.

     04.07.2023       Выпуск 498 (03.07.2023 - 09.07.2023)       Статьи
     04.07.2023       Выпуск 498 (03.07.2023 - 09.07.2023)       Статьи
     28.06.2023       Выпуск 497 (26.06.2023 - 02.07.2023)       Статьи

Python⇒Speed: When NumPy is too slow

If you’re doing numeric calculations, NumPy is a lot faster than than plain Python—but sometimes that’s not enough. What should you do when your NumPy-based code is too slow? Your first thought might be parallelism, but that should probably be the last thing you consider. There are many speedups you can do before parallelism becomes helpful, from algorithmic improvements to working around NumPy’s architectural limitations. Let’s see why NumPy can be slow, and then some solutions to help speed up your code even more.

     28.06.2023       Выпуск 497 (26.06.2023 - 02.07.2023)       Статьи

Bullet Proofing Django Models

Рекомендаци по составлению моделей в DJango

     27.06.2023       Выпуск 497 (26.06.2023 - 02.07.2023)       Статьи
     27.06.2023       Выпуск 497 (26.06.2023 - 02.07.2023)       Статьи

How to Flatten a List of Lists in Python

Или посмотреть на funcy библиотеку

     23.06.2023       Выпуск 496 (19.06.2023 - 25.06.2023)       Статьи

Building Search DSLs with Django

What happens when there are too many fields for a UI to search on? Search DSLs can give a user more granular access to searching without exposing an overly complicated interface.

     21.06.2023       Выпуск 496 (19.06.2023 - 25.06.2023)       Статьи

Django Views: The Right Way

An opinionated guide on how to write views in Django by one of the core Django devs.