PythonHub
2.49K subscribers
2.35K photos
50K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
Django Table, Filter and Export With Htmx

The article shows how to combine HTMX, django-tables2, and django-filter to build a reusable “universal table” that supports filtering and exporting in a single view without custom JavaScript. The key idea is consolidating table, filter, and export logic into one composable backend pattern, enabling cleaner views and dynamic UI updates via partial page reloads.

https://fundor333.com/post/2026/django-table-filter-export-with-htmx/
Gradient Boosting Parameters

This post will walk through how you can use the same principles behind Gradient Boosting Machines (GBM) to predict parameters of models in the same way traditional GBMs predict 1-dimensional targets. This allows us to get the benefits of Gradient Boosting (large feature sets, high dimensional interactions, modeling at scale) to fit things like smoothing splines, survival analysis, and pr...

https://statmills.com/2026-04-06-gradient_boosted_splines/
Learn Drone Programming with Python – Tutorial

Learn drone programming using Python and the high-fidelity Pyimverse simulator. The course is designed to take you from the fundamentals of 3D movement to deploying advanced computer vision across five practical, real-world missions. By focusing on simulation first, you can develop intelligent autonomous code for tasks like gesture control and line following without the risk of expensive...

https://www.youtube.com/watch?v=k-yDYgc8AmU
Why Aren’t We uv Yet?

The post analyzes uv adoption stats across GitHub repos, finding it in ~30-44% of new 2026 Python projects vs. requirements.txt despite high admiration (74% in Stack Overflow survey). It pins the gap on AI coding agents still defaulting to pip + requirements.txt, and recommends forcing uv in CI, documenting it, and prompting agents explicitly.

https://aleyan.com/blog/2026-why-arent-we-uv-yet/
OpenSRE

The open-source framework for AI SRE agents, and the training and evaluation environment they need to improve. Connect the 40+ tools you already run, define your own workflows, and investigate incidents on your own infrastructure.

https://github.com/Tracer-Cloud/opensre
Debunking Django Myths

Sarah Boyce, a Django Fellow, debunks common myths about the 20-year-old framework, showing that it is far from dead with new features merged every week and constant updates for modern Python versions. She addresses the framework's "marketing problem," highlighting that while often perceived as slow or outdated, Django powers major enterprise platforms and remains a leading choice for bo...

https://www.youtube.com/watch?v=yyX0QoUzoE4
Python Type Checker Comparison: Speed and Memory Usage

A benchmark comparison of speed and memory usage across Python type checkers including Pyrefly, Ty, Pyright, and Mypy.

https://pyrefly.org/blog/speed-and-memory-comparison/