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

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

     13.02.2023       Выпуск 478 (13.02.2023 - 19.02.2023)       Релизы

pex - 2.1.122

Библиотека и утилита для генерации .pex (Python EXecutable) файлов. Изменения описаны по ссылке https://pypi.org/project/pex/2.1.122/. Скачать можно по ссылке: https://pypi.python.org/pypi/pex/

     13.02.2023       Выпуск 478 (13.02.2023 - 19.02.2023)       Релизы

aiohttp - 3.8.4

http клиент/сервер для asyncio. Изменения описаны по ссылке https://pypi.org/project/aiohttp/3.8.4/. Скачать можно по ссылке: https://pypi.python.org/pypi/aiohttp

     09.02.2023       Выпуск 477 (06.02.2023 - 12.02.2023)       Новости
     10.02.2023       Выпуск 477 (06.02.2023 - 12.02.2023)       Релизы

IPython - 8.10.0

Интерактивная оболочка для языка программирования Python. Изменения описаны по ссылке https://pypi.org/project/ipython/8.10.0/. Скачать можно по ссылке: https://pypi.python.org/pypi/IPython

     10.02.2023       Выпуск 477 (06.02.2023 - 12.02.2023)       Релизы

SQLAlchemy - 2.0.3

Библиотека работы с базами данных. Изменения описаны по ссылке https://pypi.org/project/sqlalchemy/2.0.3/. Скачать можно по ссылке: http://pypi.python.org/pypi/SQLAlchemy/

     07.02.2023       Выпуск 477 (06.02.2023 - 12.02.2023)       Вопросы и обсуждения

Pros and Cons of Dynamic Languages

This conversation is around Luke Plant’s excellent article Python’s “Disappointing” Superpowers that describes specific uses of Python’s dynamic capabilities that wouldn’t be possible in a static typed language.

     07.02.2023       Выпуск 477 (06.02.2023 - 12.02.2023)       Статьи

Three Python Trends in 2023

Python/Rust co-projects, web apps, and more typing

     08.02.2023       Выпуск 477 (06.02.2023 - 12.02.2023)       Релизы

redis - 4.5.1

Python клиент для Redis. Изменения описаны по ссылке https://pypi.org/project/redis/4.5.1/. Скачать можно по ссылке: http://pypi.python.org/pypi/redis/

     07.02.2023       Выпуск 477 (06.02.2023 - 12.02.2023)       Релизы

virtualenv - 20.19.0

Инструмент создания виртуального рабочего окружения. Изменения описаны по ссылке https://pypi.org/project/virtualenv/20.19.0/. Скачать можно по ссылке: https://pypi.python.org/pypi/virtualenv

     04.02.2023       Выпуск 476 (30.01.2023 - 05.02.2023)       Статьи
     03.02.2023       Выпуск 476 (30.01.2023 - 05.02.2023)       Статьи
     02.02.2023       Выпуск 476 (30.01.2023 - 05.02.2023)       Статьи

Python⇒Speed: Don't bother trying to estimate Pandas memory usage

You have a file with data you want to process with Pandas, and you want to make sure you won’t run out of memory. How do you estimate memory usage given the file size? At times you may see estimates like these: “Have 5 to 10 times as much RAM as the size of your dataset”, or “several times the size of your dataset”, or 2×-3× the size of the dataset. All of these estimates can both under- and over-estimate memory usage, depending on the situation. In fact, I will go so far as to say that estimating memory usage is just not worth doing. In particular, this article will: Demonstrate the very broad range of memory usage you will see just from loading the data, before any processing is done. Cover alternative approaches to estimation: measurement and streaming.

     01.02.2023       Выпуск 476 (30.01.2023 - 05.02.2023)       Релизы