en
Feedback
PythonHub

PythonHub

Open in Telegram

News & links about Python programming. https://pythonhub.dev/

Show more
2 527
Subscribers
-124 hours
+27 days
+1730 days
Attracting Subscribers
June '26
June '26
+41
in 0 channels
May '26
+82
in 0 channels
Get PRO
April '26
+78
in 0 channels
Get PRO
March '26
+81
in 0 channels
Get PRO
February '26
+73
in 0 channels
Get PRO
January '26
+68
in 0 channels
Get PRO
December '25
+56
in 0 channels
Get PRO
November '25
+44
in 1 channels
Get PRO
October '25
+41
in 1 channels
Get PRO
September '25
+40
in 0 channels
Get PRO
August '25
+102
in 0 channels
Get PRO
July '25
+96
in 0 channels
Get PRO
June '25
+77
in 0 channels
Get PRO
May '25
+79
in 1 channels
Get PRO
April '25
+69
in 0 channels
Get PRO
March '25
+67
in 0 channels
Get PRO
February '25
+59
in 0 channels
Get PRO
January '25
+104
in 0 channels
Get PRO
December '24
+104
in 0 channels
Get PRO
November '24
+162
in 0 channels
Get PRO
October '24
+142
in 0 channels
Get PRO
September '24
+70
in 0 channels
Get PRO
August '24
+96
in 0 channels
Get PRO
July '24
+78
in 0 channels
Get PRO
June '24
+76
in 0 channels
Get PRO
May '24
+81
in 0 channels
Get PRO
April '24
+61
in 0 channels
Get PRO
March '24
+99
in 0 channels
Get PRO
February '24
+91
in 0 channels
Get PRO
January '24
+117
in 0 channels
Get PRO
December '23
+106
in 1 channels
Get PRO
November '23
+31
in 0 channels
Get PRO
October '23
+25
in 0 channels
Get PRO
September '23
+25
in 0 channels
Get PRO
August '23
+26
in 0 channels
Get PRO
July '23
+33
in 0 channels
Get PRO
June '23
+35
in 0 channels
Get PRO
May '23
+48
in 0 channels
Get PRO
April '23
+31
in 0 channels
Get PRO
March '23
+36
in 0 channels
Get PRO
February '23
+32
in 0 channels
Get PRO
January '23
+50
in 0 channels
Get PRO
December '22
+54
in 0 channels
Get PRO
November '22
+61
in 0 channels
Get PRO
October '22
+64
in 0 channels
Get PRO
September '22
+78
in 0 channels
Get PRO
August '22
+49
in 0 channels
Get PRO
July '22
+58
in 0 channels
Get PRO
June '22
+49
in 0 channels
Get PRO
May '22
+56
in 0 channels
Get PRO
April '22
+65
in 0 channels
Get PRO
March '22
+72
in 0 channels
Get PRO
February '22
+41
in 0 channels
Get PRO
January '22
+56
in 0 channels
Get PRO
December '21
+53
in 0 channels
Get PRO
November '21
+29
in 0 channels
Get PRO
October '21
+36
in 0 channels
Get PRO
September '21
+20
in 0 channels
Get PRO
August '21
+31
in 0 channels
Get PRO
July '21
+42
in 0 channels
Get PRO
June '21
+30
in 0 channels
Get PRO
May '21
+42
in 0 channels
Get PRO
April '21
+46
in 0 channels
Get PRO
March '21
+31
in 0 channels
Get PRO
February '21
+47
in 0 channels
Get PRO
January '21
+40
in 0 channels
Get PRO
December '20
+617
in 0 channels
Date
Subscriber Growth
Mentions
Channels
24 June0
23 June+2
22 June+1
21 June+1
20 June+2
19 June0
18 June+2
17 June+4
16 June+3
15 June+1
14 June+2
13 June+1
12 June+1
11 June+4
10 June+2
09 June+3
08 June0
07 June+1
06 June+1
05 June+1
04 June+2
03 June+2
02 June+3
01 June+2
Channel Posts
GitHub Pages alternative with native Python This article shows how to recreate core GitHub Pages functionality using only Python's standard library, including static file serving, automated deployments, and HTTPS support. By extending http.server in just a few dozen lines of code, it demonstrates how native Python tools can power a lightweight static website hosting platform. https://blog.klemek.fr/articles/2026-06-14/

2
Testing in Python with pytest: from the basics to advanced techniques This comprehensive guide covers pytest from basic testing concepts to advanced techniques such as fixtures, parametrization, mocking, and asynchronous testing. It provides practical patterns for building maintainable, scalable Python test suites and leveraging pytest effectively in production environments. https://en.andros.dev/blog/b6bf68de/testing-in-python-with-pytest-from-the-basics-to-advanced-techniques/
17
3
NVlabs / Sana SANA: Efficient High-Resolution Image Synthesis with Linear Diffusion Transformer https://github.com/NVlabs/Sana
32
4
OpenMontage World's first open-source, agentic video production system. 12 pipelines, 52 tools, 500+ agent skills. Turn your AI coding assistant into a full video production studio. https://github.com/calesthio/OpenMontage
47
5
django-q2 with Redis & Docker - for Background Tasks! In this video, we'll look at how to setup django-q2 using a Redis task broker running in a Docker container. This gives a more efficient and production-ready setup than using the ORM. https://www.youtube.com/watch?v=wjSFMK_IZS8
65
6
OpenMed Local-first healthcare AI that never leaves the device. https://github.com/maziyarpanahi/openmed
69
7
The 2026 way of using importmaps in Django The post explains a modern Django approach to JavaScript using import maps, native browser modules, and a shared import map rendered by Django templates. It argues that import maps can eliminate the need for bundlers in many applications while still supporting cache-busted static assets and reusable third-party app JavaScript. https://406.ch/writing/the-2026-way-of-using-importmaps-in-django/#the-2026-way-of-using-importmaps-in-django
70
8
obsidian-wiki Framework for AI agents to build and maintain a digital brain through Obsidian wiki using Karpathy's LLM Wiki pattern. https://github.com/Ar9av/obsidian-wiki
71
9
Nested Loops Aren’t the Problem. This Is. This video explains why nested loops are often a design problem rather than an algorithmic necessity, typically resulting from poor data structures or misplaced responsibilities. Using a real-world refactoring example, it shows how restructuring code can reduce complexity and improve maintainability. https://www.youtube.com/watch?v=095HrcWwHLI
71
10
Python is harder than R https://www.reddit.com/r/learnpython/comments/1u3e1dz/python_is_harder_than_r/
69
11
Jupyter Enterprise Gateway: From Notebook to Kubernetes Cluster Admin Security researchers at elttam uncovered three critical vulnerabilities in Jupyter Enterprise Gateway that allow notebook users to escalate privileges and potentially take over an entire Kubernetes cluster. The post walks through the attack chain from a Jupyter notebook to cluster-wide compromise, highlighting the risks of running multi-tenant notebook infrastructure without strong isola... https://www.elttam.com/blog/jupyter-enterprise-gateway
70
12
Pyodide 314.0: Python packages can now publish WebAssembly wheels to PyPI https://blog.pyodide.org/posts/314-release/
66
13
whichllm Find the local LLM that actually runs and performs best on your hardware. Ranked by real, recency-aware benchmarks, not parameter count. One command, run it instantly. https://github.com/Andyyyy64/whichllm
65
14
How and why to run modified Python code using the ast module Learn how to use Python's ast module to parse, transform, and execute code at runtime, using eval-type-backport as a real-world Python metaprogramming example. https://pydantic.dev/articles/eval-type-backport
68
15
Python Pro Hub – Python Error Fixes, Data Science & AI Tutorials Fix Python errors fast. Tutorials covering data science, AI projects, Flask, Django, and automation for all skill levels. https://pythonprohub.com/
73
16
Marin Open-source framework for the research and development of foundation models. https://github.com/marin-community/marin
77
17
debpalash / OmniVoice-Studio The open-source ElevenLabs alternative for local voice cloning, design, create, dubbing and dictation Desktop App https://github.com/debpalash/OmniVoice-Studio
79
18
Odysseus Self-hosted AI workspace. https://github.com/pewdiepie-archdaemon/odysseus
78
19
Talks from the PyCon US Typing Summit - Intersections, Tensor Shapes, and more! https://www.reddit.com/r/Python/comments/1u94fl8/talks_from_the_pycon_us_typing_summit/
73
20
sia SIA is a Self Improving AI framework to autonomously improve the performance of any AI system (Model / Agent) on a benchmark task. https://github.com/hexo-ai/sia
72