Real Python: Quiz: What Can You Do With Python?
Link: https://realpython.com/quizzes/what-can-you-do-with-python/
Sharpen your sense of where Python fits. You’ll revisit web frameworks, CLIs and TUIs, GUIs, data work, and robotics.
Use hints when stuck, then read the explanations. For a quick big-picture refreshe
Link: https://realpython.com/quizzes/what-can-you-do-with-python/
Sharpen your sense of where Python fits. You’ll revisit web frameworks, CLIs and TUIs, GUIs, data work, and robotics.
Use hints when stuck, then read the explanations. For a quick big-picture refreshe
Realpython
What Can You Do With Python? Quiz – Real Python
Review where Python shines: web, APIs, CLIs, GUIs, data science, ORMs, automation, and robots. Practice key terms, tools, and workflows.
Peter Hoffmann: Mistune 3 wikilink inline parser
Link: http://peter-hoffmann.com/2025/mistune-3-wikilink-inline-parser.html
Mistune 3 has changed it's internal structure and extension mechanisms.
The mistune advanced documentation has some examples how to create and register inline patterns. After some iterations I came up
Link: http://peter-hoffmann.com/2025/mistune-3-wikilink-inline-parser.html
Mistune 3 has changed it's internal structure and extension mechanisms.
The mistune advanced documentation has some examples how to create and register inline patterns. After some iterations I came up
Peter-Hoffmann
Mistune 3 wikilink inline parser
Extending Mistune 3 to parse inline wikilinks.
The Python Coding Stack: The Networking Event (#4 in The itertools Series • `combinations()` and `permutations()`)
Link: https://www.thepythoncodingstack.com/p/itertools-combinations-permutations-python-the-networking-event
"I'll get the one-to-one meetings sorted", Yteria offered. She was at the one and only meeting of the organising committee for the local Python group. There were five of them sitting around a coffee s
Link: https://www.thepythoncodingstack.com/p/itertools-combinations-permutations-python-the-networking-event
"I'll get the one-to-one meetings sorted", Yteria offered. She was at the one and only meeting of the organising committee for the local Python group. There were five of them sitting around a coffee s
Thepythoncodingstack
The Networking Event (#4 in The itertools Series • `combinations()` and `permutations()`)
Yteria still can't utter or write the word "for", but she offered to write some code to help organise a networking event
Django Weblog: Sarah Boyce - Maternity leave announcement
Link: https://www.djangoproject.com/weblog/2025/sep/21/sarah-boyce-maternity-leave-announcement/
Hello Djangonauts,
At the end of this month, I'll be stepping away from my role as Django Fellow for some time while I'm on maternity leave.
During this period, I don't anticipate being active on Trac
Link: https://www.djangoproject.com/weblog/2025/sep/21/sarah-boyce-maternity-leave-announcement/
Hello Djangonauts,
At the end of this month, I'll be stepping away from my role as Django Fellow for some time while I'm on maternity leave.
During this period, I don't anticipate being active on Trac
Django Project
Sarah Boyce - Maternity leave announcement
Posted by Sarah Boyce on Sept. 21, 2025
Real Python: Quiz: Get Started With FastAPI
Link: https://realpython.com/quizzes/get-started-with-fastapi/
Brush up on core FastAPI concepts with this short quiz. You’ll revisit how to install FastAPI with extras, define API endpoints, and understand path and query parameters. See how FastAPI handles JSON
Link: https://realpython.com/quizzes/get-started-with-fastapi/
Brush up on core FastAPI concepts with this short quiz. You’ll revisit how to install FastAPI with extras, define API endpoints, and understand path and query parameters. See how FastAPI handles JSON
Realpython
Get Started With FastAPI Quiz – Real Python
This hands-on quiz will test your knowledge of FastAPI basics, from installation and endpoints to automatic JSON responses and Swagger UI.
Real Python: Get Started With FastAPI
Link: https://realpython.com/get-started-with-fastapi/
FastAPI is a web framework for building APIs with Python. It leverages standard Python type hints to provide automatic validation, serialization, and interactive documentation. When you’re deciding be
Link: https://realpython.com/get-started-with-fastapi/
FastAPI is a web framework for building APIs with Python. It leverages standard Python type hints to provide automatic validation, serialization, and interactive documentation. When you’re deciding be
Realpython
Get Started With FastAPI – Real Python
FastAPI is the first choice when creating APIs in Python. Explore FastAPI code examples and get the most frequent questions about FastAPI answered.
Ned Batchelder: Testing is better than DSA
Link: https://nedbatchelder.com/blog/202509/testing_is_better_than_dsa.html
I see new learners asking about “DSA” a lot. Data Structures and Algorithms
are of course important: considered broadly, they are the two ingredients that
make up all programs. But in my opinion, “D
Link: https://nedbatchelder.com/blog/202509/testing_is_better_than_dsa.html
I see new learners asking about “DSA” a lot. Data Structures and Algorithms
are of course important: considered broadly, they are the two ingredients that
make up all programs. But in my opinion, “D
Nedbatchelder
Testing is better than DSA
People should spend less time learning DSA, more time learning testing.
PyPodcats: Trailer: Episode 10 With Una Galyeva
Link: https://pypodcats.live/episodes/ep-10-trailer/
A preview of our chat with Una Galyeva. Watch the full episode on September 25, 2025A preview of our chat with Una Galyeva. Watch the full episode on September 25, 2025Sneak Peek of our chat with Una
Link: https://pypodcats.live/episodes/ep-10-trailer/
A preview of our chat with Una Galyeva. Watch the full episode on September 25, 2025A preview of our chat with Una Galyeva. Watch the full episode on September 25, 2025Sneak Peek of our chat with Una
pypodcats.live
Trailer: Episode 10 with Una Galyeva
A preview of our chat with Una Galyeva. Watch the full episode on September 25, 2025
Python Bytes: #450 At-Cost Agentic IDE Tooling
Link: https://pythonbytes.fm/episodes/show/450/at-cost-agentic-ide-tooling
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><em>* <a href="https://labs.quansight.org/blog/pandas_expressions?featured_on=pythonbytes">pandas is getting pd.col expressions</a></em>
Link: https://pythonbytes.fm/episodes/show/450/at-cost-agentic-ide-tooling
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><em>* <a href="https://labs.quansight.org/blog/pandas_expressions?featured_on=pythonbytes">pandas is getting pd.col expressions</a></em>
pythonbytes.fm
At-Cost Agentic IDE Tooling
News and announcements from the Python community for the week of Sep 22nd, 2025
Jacob Perkins: Async Python Functions with Celery
Link: https://streamhacker.com/2025/09/22/async-python-functions-with-celery/
Celery is a great tool for scheduled function execution in python. You can also use it for running functions in the background asynchronously from your main process. However, it does not support pytho
Link: https://streamhacker.com/2025/09/22/async-python-functions-with-celery/
Celery is a great tool for scheduled function execution in python. You can also use it for running functions in the background asynchronously from your main process. However, it does not support pytho
StreamHacker
Async Python Functions with Celery
How to use python asyncio with Celery for scheduled and asynchronous tasks
Real Python: Quiz: Strip Characters From a Python String
Link: https://realpython.com/quizzes/strip-characters-from-string/
Brush up on how Python’s strip, lstrip, and rstrip string methods work. You’ll practice how to remove whitespace, specific characters, and use the right tool for trimming string ends.
Try these questi
Link: https://realpython.com/quizzes/strip-characters-from-string/
Brush up on how Python’s strip, lstrip, and rstrip string methods work. You’ll practice how to remove whitespace, specific characters, and use the right tool for trimming string ends.
Try these questi
Realpython
Strip Characters From a Python String Quiz – Real Python
Test your Python skills on removing characters from strings using strip, lstrip, and rstrip. Practice default behavior, custom chars, and more.
Talk Python to Me: #520: pyx - the other side of the uv coin (announcing pyx)
Link: https://talkpython.fm/episodes/show/520/pyx-the-other-side-of-the-uv-coin-announcing-pyx
A couple years ago, Charlie Marsh lit a fire under Python tooling with Ruff and then uv. Today he’s back with something on the other side of that coin: pyx.
<br/>
<br/>
Pyx isn’t a PyPI replacement.
Link: https://talkpython.fm/episodes/show/520/pyx-the-other-side-of-the-uv-coin-announcing-pyx
A couple years ago, Charlie Marsh lit a fire under Python tooling with Ruff and then uv. Today he’s back with something on the other side of that coin: pyx.
<br/>
<br/>
Pyx isn’t a PyPI replacement.
talkpython.fm
pyx - the other side of the uv coin (announcing pyx)
A couple years ago, Charlie Marsh lit a fire under Python tooling with Ruff and then uv. Today he’s back with something on the other side of that coin: pyx. Pyx isn’t a PyPI replacement. Think server, not just index. It mirrors PyPI, plays fine with…
Real Python: Strip Characters From a Python String
Link: https://realpython.com/courses/strip-characters-from-string/
By default, Python’s .strip() method removes whitespace characters from both ends of a string. To remove different characters, you can pass a string as an argument that specifies a set of characters t
Link: https://realpython.com/courses/strip-characters-from-string/
By default, Python’s .strip() method removes whitespace characters from both ends of a string. To remove different characters, you can pass a string as an argument that specifies a set of characters t
Realpython
Strip Characters From a Python String – Real Python
Use Python's .strip() to remove whitespace or chosen chars. Learn pitfalls, real-world cases, and compare with .lstrip() and .removesuffix().
PyCoder’s Weekly: Issue #701: Python to LaTeX Math, MCPs, Playwright, and More (Sept. 23, 2025)
Link: https://pycoders.com/issues/701
#701 – SEPTEMBER 23, 2025 View in Browser » 3 Tools To Convert Python Code to LaTeX Math LaTeX is a powerful tool for writing mathematical notation and equations. It is widely used in academic p
Link: https://pycoders.com/issues/701
#701 – SEPTEMBER 23, 2025 View in Browser » 3 Tools To Convert Python Code to LaTeX Math LaTeX is a powerful tool for writing mathematical notation and equations. It is widely used in academic p
Pycoders
PyCoder’s Weekly | Issue #701
Python to LaTeX Math, MCPs, Playwright, and More
Daniel Roy Greenfeld: Over Twenty Years of Writing Tools
Link: https://daniel.feldroy.com/posts/2025-09-over-twenty-years-of-writing-tools
On my articles page, you can read near the top that I've been writing for the past 20 years (plus a little more). It's not all my online public writing, but it's a majority of it. The primary reason p
Link: https://daniel.feldroy.com/posts/2025-09-over-twenty-years-of-writing-tools
On my articles page, you can read near the top that I've been writing for the past 20 years (plus a little more). It's not all my online public writing, but it's a majority of it. The primary reason p
https://daniel.feldroy.com
Over Twenty Years of Writing Tools
A retrospective of over twenty years worth of writing tools that I've used to write online.