ch
Feedback
PythonHub

PythonHub

前往频道在 Telegram

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

显示更多
2 525
订阅者
-324 小时
+17
+3030
帖子存档
django-rls PostgreSQL Row Level Security for Django. https://github.com/kdpisda/django-rls

facebookresearch / vggt CVPR 2025 Best Paper Award VGGT: Visual Geometry Grounded Transformer https://github.com/facebookresearch/vggt

Python Hub Weekly Digest for 2025-07-06 https://pythonhub.dev/digest/2025-07-06/

Uv and Ray: Pain-Free Python Dependencies in Clusters https://www.anyscale.com/blog/uv-ray-pain-free-python-dependencies-in-clusters

awslabs / mcp AWS MCP Servers — helping you get the most out of AWS, wherever you use MCP. https://github.com/awslabs/mcp

IndyPy x IndyAWS Hybrid Meetup is July 22 Join IndyPy + IndyAWS July 22 at 7pm ET for cloud automation demos on GenAI and AWS governance. In-person or Zoom. Free event! https://www.meetup.com/indypy/events/305589070/

aliasrobotics / cai Cybersecurity AI (CAI), an open Bug Bounty-ready Artificial Intelligence https://github.com/aliasrobotics/cai

No dashboards. No bloat. Just one HTML file with everything you need. no config setup needed in both CI and local. https://www.reddit.com/r/madeinpython/comments/1lh0fog/no_dashboards_no_bloat_just_one_html_file_with/

willccbb / verifiers Verifiers for LLM Reinforcement Learning https://github.com/willccbb/verifiers

A Python Language Server, Mypy-compatible https://zubanls.com/

500× faster: Four different ways to speed up your code If your Python code is slow and needs to be fast, there are many different approaches you can ... https://pythonspeed.com/articles/different-ways-speed/

I turned a thermodynamics principle into a learning algorithm - and it lands a moonlander https://www.reddit.com/r/Python/comments/1l7y0zh/i_turned_a_thermodynamics_principle_into_a/

Python Hub Weekly Digest for 2025-06-29 https://pythonhub.dev/digest/2025-06-29/

Are Python Dictionaries Ordered Data Structures? Python dictionaries preserve insertion order starting from version 3.6 (as an implementation detail) and this became a guaranteed language feature in Python 3.7 and later, meaning items will appear in the order they were added. However, while dictionaries now maintain insertion order, order is not considered a defining characteristic—dictionaries with the same key-value pairs but differe... https://www.thepythoncodingstack.com/p/are-python-dictionaries-ordered-data

Dynamic YAML with Python computed properties for fusing API workflows and SQL https://sequor.dev/

Beyond htmx: building modern Django apps with Alpine AJAX The article demonstrates how to use Alpine.js and AJAX with Django to create interactive, client-side web applications that efficiently handle dynamic data updates without full page reloads. It provides practical examples and code snippets for integrating Alpine.js with Django views, serializers, and templates to enhance user experience through seamless frontend-backend communication. https://www.loopwerk.io/articles/2025/alpine-ajax-django

Avoiding PostgreSQL Pitfalls: The Hidden Cost of Failing Inserts This article discusses how failing inserts in PostgreSQL, particularly due to unique constraint violations in a Django application, can cause significant performance issues and database overhead. It recommends using ON CONFLICT DO NOTHING in PostgreSQL or Django's bulkcreate with ignoreconflicts=True to prevent these problems. https://johnnymetz.com/posts/postgresql-failing-insert/