Real Python: What Does -> Mean in Python Function Definitions?
Link: https://realpython.com/what-does-arrow-mean-in-python/
In Python, the arrow symbol (->) appears in function definitions as a notation to indicate the expected return type. This notation is optional, but when you include it, you clarify what data type a fu
Link: https://realpython.com/what-does-arrow-mean-in-python/
In Python, the arrow symbol (->) appears in function definitions as a notation to indicate the expected return type. This notation is optional, but when you include it, you clarify what data type a fu
Realpython
What Does -> Mean in Python Function Definitions? – Real Python
Wondering what the arrow notation means in Python? Discover how -> is used in type hints, functions, and more, with clear explanations and examples.
Python Engineering at Microsoft: Python in Visual Studio Code – September 2025 Release
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-september-2025-release/
We’re excited to announce the September 2025 release of the Python, Pylance and Jupyter extensions for Visual Studio Code!
This release includes the following announcements:
Experimental AI-powered h
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-september-2025-release/
We’re excited to announce the September 2025 release of the Python, Pylance and Jupyter extensions for Visual Studio Code!
This release includes the following announcements:
Experimental AI-powered h
Microsoft News
Python in Visual Studio Code – September 2025 Release
The September 2025 release includes pipenv support in the Python Environment Extension, a new experimental hover feature with GitHub Copilot and Pylance, and more!
PyCoder’s Weekly: Issue #699: Feature Flags, Type Checker Showdown, Null in pandas, and More (Sept. 15, 2025)
Link: https://pycoders.com/issues/699
#699 – SEPTEMBER 15, 2025 View in Browser » Feature Flags in Depth Feature flags are a way to enable or disable blocks of code without needing to re-deploy your software. This post shows you sev
Link: https://pycoders.com/issues/699
#699 – SEPTEMBER 15, 2025 View in Browser » Feature Flags in Depth Feature flags are a way to enable or disable blocks of code without needing to re-deploy your software. This post shows you sev
Pycoders
PyCoder’s Weekly | Issue #699
Feature Flags, Type Checker Showdown, Null in pandas, and More
Jacob Perkins: Python Async Gather in Batches
Link: https://streamhacker.com/2025/09/15/python-async-gather-in-batches/
Python’s asyncio.gather function is great for I/O bound parallel processing. There’s a simple utility function I like to use that I call gather_in_batches:
async def gather_in_batches(tasks, batch_siz
Link: https://streamhacker.com/2025/09/15/python-async-gather-in-batches/
Python’s asyncio.gather function is great for I/O bound parallel processing. There’s a simple utility function I like to use that I call gather_in_batches:
async def gather_in_batches(tasks, batch_siz
StreamHacker
Python Async Gather in Batches
Process data in parallel simply and effectively with python’s asyncio.gather
Tryton News: Security Release for issue #14220
Link: https://discuss.tryton.org/t/security-release-for-issue-14220/8823
Luis Falcon has found that trytond may log sensitive data like passwords when the logging level is set to INFO.
Impact
CVSS v3.0 Base Score: 4.2
Attack Vector: Network
Attack Complexity: Low
Privileg
Link: https://discuss.tryton.org/t/security-release-for-issue-14220/8823
Luis Falcon has found that trytond may log sensitive data like passwords when the logging level is set to INFO.
Impact
CVSS v3.0 Base Score: 4.2
Attack Vector: Network
Attack Complexity: Low
Privileg
Tryton Discussion
Security Release for issue #14220
Luis Falcon has found that trytond may log sensitive data like passwords when the logging level is set to INFO. Impact CVSS v3.0 Base Score: 4.2 Attack Vector: Network Attack Complexity: Low Privileges Required: High User Interaction: None Scope: Unchanged…
Real Python: Python Project Management With uv
Link: https://realpython.com/courses/python-project-management-with-uv/
The uv tool is a high-speed package and project manager for Python. It’s written in Rust and designed to streamline your workflow. It offers fast dependency installation and integrates various functio
Link: https://realpython.com/courses/python-project-management-with-uv/
The uv tool is a high-speed package and project manager for Python. It’s written in Rust and designed to streamline your workflow. It offers fast dependency installation and integrates various functio
Realpython
Python Project Management With uv – Real Python
Create and manage Python projects with uv, a blazing-fast package and project manager built in Rust. Learn setup, workflow, and best practices.
Python Software Foundation: Announcing the 2025 PSF Board Election Results!
Link: https://pyfound.blogspot.com/2025/09/announcing-2025-psf-board-election.html
The 2025 election for the PSF Board created an opportunity for conversations about the PSF's work to serve the global Python community. We appreciate community members' perspectives, passion, and enga
Link: https://pyfound.blogspot.com/2025/09/announcing-2025-psf-board-election.html
The 2025 election for the PSF Board created an opportunity for conversations about the PSF's work to serve the global Python community. We appreciate community members' perspectives, passion, and enga
Python Software Foundation Blog
Announcing the 2025 PSF Board Election Results!
The 2025 election for the PSF Board created an opportunity for conversations about the PSF's work to serve the global Python community. We a...
PyCoder’s Weekly: Issue #700: Special Issue #700! (Sept. 16, 2025)
Link: https://pycoders.com/issues/700
#700 – SEPTEMBER 16, 2025 View in Browser » Nope, you’re not seeing double, this is the second delivery of PyCoder’s this week. In celebration of our 700th issue we’re sending you a little extra P
Link: https://pycoders.com/issues/700
#700 – SEPTEMBER 16, 2025 View in Browser » Nope, you’re not seeing double, this is the second delivery of PyCoder’s this week. In celebration of our 700th issue we’re sending you a little extra P
Pycoders
PyCoder’s Weekly | Issue #700
Special Issue #700!
Python Morsels: Nested list comprehensions
Link: https://www.pythonmorsels.com/nested-list-comprehensions/
Nested list comprehensions in Python can look complex, but with thoughtful whitespace, they can be pretty readable!
Table of contents
Nested list comprehensions
Nested for loops
Comprehensions ver
Link: https://www.pythonmorsels.com/nested-list-comprehensions/
Nested list comprehensions in Python can look complex, but with thoughtful whitespace, they can be pretty readable!
Table of contents
Nested list comprehensions
Nested for loops
Comprehensions ver
Pythonmorsels
Nested list comprehensions
Nested list comprehensions in Python can look complex, but with thoughtful whitespace, they can be pretty readable!
Real Python: Quiz: Python 3.14 Preview: REPL Autocompletion and Highlighting
Link: https://realpython.com/quizzes/python-repl-autocompletion-highlighting/
In this quiz, you’ll test your understanding of Python 3.14 Preview: REPL Autocompletion and Highlighting.
With these skills, you’ll be able to take advantage of smarter autocompletion in import state
Link: https://realpython.com/quizzes/python-repl-autocompletion-highlighting/
In this quiz, you’ll test your understanding of Python 3.14 Preview: REPL Autocompletion and Highlighting.
With these skills, you’ll be able to take advantage of smarter autocompletion in import state
Realpython
Python 3.14 Preview: REPL Autocompletion and Highlighting Quiz – Real Python
Take this quiz to explore Python 3.14's REPL upgrades! Test your knowledge of new autocompletion tools and built-in syntax highlighting.
Stéphane Wirtel: How about checking out the upcoming interesting conferences?
Link: https://wirtel.be/post/2025/09/17/how-about-checking-out-the-upcoming-interesting-conferences/
Here are the upcoming conferences that interest me.
Odoo Experience 2025: I think I’ll go tomorrow, it’s been a long time since I last attended. The last time I was part of the team was back in 2014
Link: https://wirtel.be/post/2025/09/17/how-about-checking-out-the-upcoming-interesting-conferences/
Here are the upcoming conferences that interest me.
Odoo Experience 2025: I think I’ll go tomorrow, it’s been a long time since I last attended. The last time I was part of the team was back in 2014
Real Python: Python 3.14 Preview: REPL Autocompletion and Highlighting
Link: https://realpython.com/python-repl-autocompletion-highlighting/
Python 3.14 introduces improvements to its interactive shell (REPL), bringing a more modern, colorful, and user-friendly environment. The new features make the Python 3.14 REPL a powerful tool for exp
Link: https://realpython.com/python-repl-autocompletion-highlighting/
Python 3.14 introduces improvements to its interactive shell (REPL), bringing a more modern, colorful, and user-friendly environment. The new features make the Python 3.14 REPL a powerful tool for exp
Realpython
Python 3.14 Preview: REPL Autocompletion and Highlighting – Real Python
Explore Python 3.14 REPL updates: import autocompletion, syntax coloring, and theme customization to help you code faster and read with ease.
Mirek Długosz: Found on web: Commoncog
Link: https://mirekdlugosz.com/blog/2025/found-on-web-commoncog/
Commoncog by Cedric Chin is probably the most influential resource I’ve discovered on the Internet in the last couple of years. It’s deep. It’s grounded. It’s deliberate. It’s insightful. It’s judicio
Link: https://mirekdlugosz.com/blog/2025/found-on-web-commoncog/
Commoncog by Cedric Chin is probably the most influential resource I’ve discovered on the Internet in the last couple of years. It’s deep. It’s grounded. It’s deliberate. It’s insightful. It’s judicio
Mirek Długosz personal website
Found on web: Commoncog
Commoncog by Cedric Chin is probably the most influential resource I’ve discovered on the Internet in the last couple of years. It’s deep. It’s grounded. It’s deliberate. It’s insightful. It’s judicious. It’s nuanced. It’s well written. It’s practical. If…
Django Weblog: Django 6.0 alpha 1 released
Link: https://www.djangoproject.com/weblog/2025/sep/17/django-60-alpha-released/
Django 6.0 alpha 1 is now available. It represents the first
stage in the 6.0 release cycle and is an opportunity to try out
the changes coming in Django 6.0.
Django 6.0 assembles a mosaic of modern t
Link: https://www.djangoproject.com/weblog/2025/sep/17/django-60-alpha-released/
Django 6.0 alpha 1 is now available. It represents the first
stage in the 6.0 release cycle and is an opportunity to try out
the changes coming in Django 6.0.
Django 6.0 assembles a mosaic of modern t
Django Project
Django 6.0 alpha 1 released
Posted by Natalia Bidart on Sept. 17, 2025
Python Insider: Python 3.14.0rc3 is go!
Link: https://pythoninsider.blogspot.com/2025/09/python-3140rc3-is-go.html
It’s 🪄 finally 🪄 the final 3.14 release candidate!
https://www.python.org/downloads/release/python-3140rc3/
Note: It’s another magic release. We fixed another
bug that required bumping the magic numbe
Link: https://pythoninsider.blogspot.com/2025/09/python-3140rc3-is-go.html
It’s 🪄 finally 🪄 the final 3.14 release candidate!
https://www.python.org/downloads/release/python-3140rc3/
Note: It’s another magic release. We fixed another
bug that required bumping the magic numbe
Blogspot
Python Insider: Python 3.14.0rc3 is go!
Talk Python to Me: #519: Data Science Cloud Lessons at Scale
Link: https://talkpython.fm/episodes/show/519/data-science-cloud-lessons-at-scale
Today on Talk Python: What really happens when your data work outgrows your laptop. Matthew Rocklin, creator of Dask and cofounder of Coiled, and Nat Tabris a staff software engineer at Coiled join me
Link: https://talkpython.fm/episodes/show/519/data-science-cloud-lessons-at-scale
Today on Talk Python: What really happens when your data work outgrows your laptop. Matthew Rocklin, creator of Dask and cofounder of Coiled, and Nat Tabris a staff software engineer at Coiled join me
talkpython.fm
Data Science Cloud Lessons at Scale
Today on Talk Python: What really happens when your data work outgrows your laptop. Matthew Rocklin, creator of Dask and cofounder of Coiled, and Nat Tabris a staff software engineer at Coiled join me to unpack the messy truth of cloud-scale Python. During…
Real Python: Quiz: Ways to Start Interacting With Python
Link: https://realpython.com/quizzes/interactive-python/
Want to revisit different ways to run Python code interactively? In this quiz, you’ll review concepts such as using the REPL, executing scripts, and working within IDEs.
Before starting, make sure you
Link: https://realpython.com/quizzes/interactive-python/
Want to revisit different ways to run Python code interactively? In this quiz, you’ll review concepts such as using the REPL, executing scripts, and working within IDEs.
Before starting, make sure you
Realpython
Ways to Start Interacting With Python Quiz – Real Python
Test your knowledge of running Python interactively using REPL, scripts, and IDEs, and clarify key concepts.
Real Python: The Real Python Podcast – Episode #266: Dangers of Automatically Converting a REST API to MCP
Link: https://realpython.com/podcasts/rpp/266/
When converting an existing REST API to the Model Context Protocol, what should you consider? What anti-patterns should you avoid to keep an AI agent’s context clean? This week on the show, Kyle Strat
Link: https://realpython.com/podcasts/rpp/266/
When converting an existing REST API to the Model Context Protocol, what should you consider? What anti-patterns should you avoid to keep an AI agent’s context clean? This week on the show, Kyle Strat
Realpython
Episode #266: Dangers of Automatically Converting a REST API to MCP – The Real Python Podcast
When converting an existing REST API to the Model Context Protocol, what should you consider? What anti-patterns should you avoid to keep an AI agent’s context clean? This week on the show, Kyle Stratis returns to discuss his upcoming book, "AI Agents with…
Data School: Book preview: Master Machine Learning with scikit-learn 📖
Link: https://www.dataschool.io/master-machine-learning-book-preview/
Last week, I posted this announcement on LinkedIn and Bluesky and X:
Dream unlocked: I&aposm publishing my first book! 🎉🎉🎉It&aposs called "Master Machine Learning with scikit-learn: A Practical Guide
Link: https://www.dataschool.io/master-machine-learning-book-preview/
Last week, I posted this announcement on LinkedIn and Bluesky and X:
Dream unlocked: I&aposm publishing my first book! 🎉🎉🎉It&aposs called "Master Machine Learning with scikit-learn: A Practical Guide
Data School
Book preview: Master Machine Learning with scikit-learn
This is a practical guide to help you transform from Machine Learning novice to skilled ML practitioner. Download the first 3 chapters for free!
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.