PythonHub
2.49K subscribers
2.35K photos
50K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
CadQuery is an open-source Python library for building 3D CAD models

https://cadquery.github.io/
Django to Browser Push - Without WebSockets, Channels, or Redis

The post shows how to push real-time browser updates in Django without WebSockets, Channels, or Redis by using a simpler HTTP/SSE-based approach. Its main point is that you can get instant UI updates with much less infrastructure and complexity while still keeping the setup practical for existing Django apps.

https://usman.it/django-realtime-updates-without-websockets/
Powering Up Django Development With Claude Code

LLM coding tools can accelerate Django development, but unchecked outputs often create technical debt through poor architecture, weak tests, and overly complex code. The talk focuses on using Claude Code effectively with strong prompts, guardrails, and skepticism so AI becomes a productive assistant rather than a cleanup burden.

https://www.youtube.com/watch?v=MJMex1FNjXI
OriginTracer

This is a low level observability tool with a very flexible extension model. Users write probes and rules and the tool constructs a live causal graph.

https://github.com/Humbulani1234/origintracer
Decoupling Your Business Logic from the Django ORM

As Django apps grow, stuffing business logic into views, models, and managers creates tangled code, slow tests, and ORM-driven performance issues like overfetching and N+1 queries. The solution proposed is moving domain logic into typed plain-Python classes while using the ORM only for persistence, making systems cleaner, faster, easier to test, and easier to evolve.

https://buttondown.com/carlton/archive/decoupling-your-business-logic-from-the-django-orm/
Django: fixing a memory “leak” from Python 3.14’s incremental garbage collection

Adam Johnson explains how Python 3.14's new incremental garbage collection caused excessive memory growth during Django migrations, leading to out-of-memory errors on resource-constrained servers. He shares a practical workaround by explicitly triggering garbage collection after each migration step, and notes the issue helped support the planned revert to the prior GC behavior in Python ...

https://adamj.eu/tech/2026/04/20/django-python-3.14-incremental-gc/