Python LibHunt Info

Subscribe to our Python newsletter
to know all the trending
packages, news and articles.

All Categories

MORE - Discover trending Python projects by mentions on social networks.

The Awesome Python feed

Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
Today

Using Polars in a Pandas world

Pandas has far more third-party integrations than Polars. Learn how to use those libraries with Polars dataframes.
Article Added by: itamarst // pythonspeed.com

pillow

Python Imaging Library (Fork)
Featured Package // Category Imagery

Yesterday

Rust std fs slower than Python!? No, it's hardware

Article Popular Story // xuanwo.io

pip

The Python package installer
Featured Package // Category Package Management

Last 7 Days

The Python Rich Package: Unleash the Power of Console Text

Article Popular Story // realpython.com

PyMC

Bayesian Modeling and Probabilistic Programming in Python
Featured Package // Category Science and Data Analysis

PEP 734: Multiple Interpreters in the Stdlib

Article Popular Story // peps.python.org

🚀⚡New open-source⚡ VS. old open-source 🦖

Article Popular Story // dev.to

Spyder

Official repository for Spyder - The Scientific Python Development Environment
Featured Package // Category IDEs

Python Multiprocessing: 7-Day Crash Course

Article Popular Story // medium.com

Dependencies Belong in Version Control

Article Popular Story // www.forrestthewoods.com

Securely deploying Swirl in Azure.

Article Popular Story // dev.to

PyInstaller

Freeze (package) Python programs into stand-alone executables
Featured Package // Category Distribution

pyzmq

PyZMQ: Python bindings for zeromq
Featured Package // Category Networking

Swirl Security Overview

Article Popular Story // dev.to

APScheduler

Task scheduling library for Python
Featured Package // Category Job Scheduler

Awesome Python Weekly » 391

Top Stories
  • Python 3.13 alpha 1 contains breaking changes, what's the plan? - Core Development
  • 😂11 Fun Python libraries to make your day better☀️
  • One Liners Python Edition

Last 30 Days

RenPy

The Ren'Py Visual Novel Engine
Featured Package // Category Game Development

Altair

Declarative statistical visualization library for Python
Featured Package // Category Data Visualization

Two kinds of threads pools, and why you need both

When you’re doing large scale data processing with Python, threads are a good way to achieve parallelism. This is especially true if you’re doing numeric processing, where the global interpreter lock (GIL) is typically not an issue. And if you’re using threading, thread pools are a good way to make sure you don’t use too many resources.

But how many threads should your thread pool have? And do you need just one thread pool, or more than one?
Article Added by: itamarst // pythonspeed.com