Public list by ~pycoders

Issue #746: Free-Threaded NumPy, __all__, PyTorch, and More (2026-08-04)

PyCon Korea 2026

https://2026.pycon.kr/

PyCon Korea 2026 August 15 to August 18, 2026 PYCON.KR

15 days ago

Managing Imports With Python’s __all__

https://realpython.com/courses/managing-imports-dunder-all/

Managing Imports With Python’s __all__ Learn how Python’s dunder all variable controls wildcard imports and shapes the public API your packages and modules expose. REAL PYTHON course

15 days ago

GitHub - Agent-Field/pr-af: #1 open-source code reviewer on Code-Review-Bench

https://agentfield.ai/github/pr-af/?utm_id=pycoders-260804-pr-af

Open Source Just Reached Frontier Code Review An open-source code reviewer just outranked leading closed models. pr-af places #2 of 42 on Code-Review-Bench. The open-source harness plans a custom review per PR, runs reviewer agents in parallel, and verifies every finding against your source before posting inline comments. About 10x cheaper. Star & Deploy AGENTFIELD.AI sponsor

15 days ago

PyTorch Tutorial for Deep Learning - The JetBrains Blog

https://blog.jetbrains.com/pycharm/2026/07/pytorch-tutorial-for-deep-learning/

PyTorch Tutorial for Deep Learning This article provides a guide for developers with basic Python knowledge looking to explore deep learning using PyTorch. EVGENIA VERBINA

#python #pytorch

15 days ago

Django: introducing django-crawl - Adam Johnson

https://adamj.eu/tech/2026/07/22/introducing-django-crawl/

Introducing django-crawl During a recent site migration, Adam used the Django test harness to crawl his site looking for missing security headers. In the process he uncovered seven other bugs for a project that had 100% code coverage. He has consolidated the crawling technique for testing into a library: django-crawl. ADAM JOHNSON

15 days ago

Running subprocesses in Python

https://www.pythonmorsels.com/running-subprocesses-in-python/

Running subprocesses in Python You can use Python’s subprocess.run() function to launch other programs from within Python. TREY HUNNER

15 days ago

SIMD in Pure Python | Blog

https://www.da.vidbuchanan.co.uk/blog/python-swar.html

SIMD in Pure Python SIMD is Single Instruction, Multiple Data, an approach that does calculations with vectors of data sets. Python doesn’t support it natively, but libraries like NumPy allow you to code this way. DAVID BUCHANAN

15 days ago

Why the Hardest Concept for Python Devs Is Concurrency: asyncio vs threading vs multiprocessing

https://oedokumaci.com/blog/posts/python-concurrency/

Why the Hardest Concept for Python Devs Is Concurrency “Concurrency is arguably the hardest concept for Python developers, because the important ideas already assume you understand the operating system underneath.” OEDOKUMACI.COM • Shared by Oral Ersoy Dokumaci

#concurrency #production #python #software-engineering

15 days ago

How to Stream Subprocess Output in Real Time in PyQt6

https://www.pythonguis.com/faq/constantly-print-subprocess-output-while-process-is-running/

Stream Subprocess Output in Real Time in PyQt6 Learn how to run external processes from PyQt6 and display their output line-by-line in real time, without blocking the GUI. Covers QProcess and QThread-based approaches with complete working examples. PYTHONGUIS

#pyqt6 #python #subprocess #qprocess #qthread #gui

15 days ago

Setting Django's DEBUG safely | Lincoln Loop

https://lincolnloop.com/blog/setting-djangos-debug-safely/

Setting Django’s DEBUG Safely “Deploying Django with DEBUG=True exposes your app to attackers. Learn why it’s risky and how to fail closed so DEBUG=False stays the safe default.” JAMES OSGOOD

#development #django

15 days ago

CrewAI in Python: Coordinating Teams of AI Agents

https://realpython.com/crewai-python/

CrewAI in Python: Coordinating Teams of AI Agents Learn how to use CrewAI to build teams of AI agents in Python, define roles and tools, and coordinate multi-agent workflows that solve complex tasks. REAL PYTHON

15 days ago

How to Use Google’s Antigravity CLI for AI Code Assistance

https://realpython.com/antigravity-cli/

How to Use Google’s Antigravity CLI for AI Code Assistance Get started with Google’s Antigravity CLI, a terminal-based AI coding agent, and use it to read, review, and refactor your Python code. REAL PYTHON

15 days ago

Python: spy on function calls with unittest.mock’s wraps - Adam Johnson

https://adamj.eu/tech/2026/07/25/python-spy-unittest-mock-wraps/

Spy on Function Calls With unittest.mock Wraps Testing terminology distinguishes between different kinds of test doubles: mocks to replace real world behavior, and spies which wrap a function recording information about them. Despite its name, Python’s unittest.mock supports both. ADAM JOHNSON

15 days ago

Scaling NumPy on Free-Threaded Python

https://labs.quansight.org/blog/scaling-numpy-on-free-threaded-python

Scaling NumPy on Free-Threaded Python A recap on the work done in NumPy and CPython to make multi-threaded NumPy workloads scale on the free-threaded build of CPython. KUMAR ADITYA

15 days ago