Real Python: Quiz: How to Use Python: Your First Steps
Link: https://realpython.com/quizzes/python-first-steps/
Ready to check your foundation in Python? This quiz reviews core beginner topics like variables, keywords, strings, and errors. You’ll also practice commands and tools that help you get started quickl
Link: https://realpython.com/quizzes/python-first-steps/
Ready to check your foundation in Python? This quiz reviews core beginner topics like variables, keywords, strings, and errors. You’ll also practice commands and tools that help you get started quickl
Realpython
How to Use Python: Your First Steps Quiz – Real Python
Review the basics of Python with this quiz. Practice syntax, keywords, variables, errors, and tools every beginner should know.
Talk Python to Me: #523: Pyrefly: Fast, IDE-friendly typing for Python
Link: https://talkpython.fm/episodes/show/523/pyrefly-fast-ide-friendly-typing-for-python
Python typing got fast enough to feel invisible. Pyrefly is a new, open source type checker and IDE language server from Meta, written in Rust, with a focus on instant feedback and real-world DX. Toda
Link: https://talkpython.fm/episodes/show/523/pyrefly-fast-ide-friendly-typing-for-python
Python typing got fast enough to feel invisible. Pyrefly is a new, open source type checker and IDE language server from Meta, written in Rust, with a focus on instant feedback and real-world DX. Toda
talkpython.fm
Pyrefly: Fast, IDE-friendly typing for Python
Python typing got fast enough to feel invisible. Pyrefly is a new, open source type checker and IDE language server from Meta, written in Rust, with a focus on instant feedback and real-world DX. Today, we will dig into what it is, why it exists, and how…
Real Python: How to Use Python: Your First Steps
Link: https://realpython.com/python-first-steps/
If you’re starting fresh with programming and wondering how to use Python, this tutorial will give you the foundation you need to get started with Python step by step. You’ll learn how to install Pyth
Link: https://realpython.com/python-first-steps/
If you’re starting fresh with programming and wondering how to use Python, this tutorial will give you the foundation you need to get started with Python step by step. You’ll learn how to install Pyth
Realpython
How to Use Python: Your First Steps – Real Python
In this step-by-step tutorial, you'll learn the basics of how to use Python. With this knowledge, you'll be able to start coding your Python applications.
Jacob Perkins: Monitoring Celery Tasks with Sentry
Link: https://streamhacker.com/2025/10/13/monitoring-celery-tasks-with-sentry/
Sentry is a great tool for monitoring celery tasks, and alerting when they fail or don’t run on time. But it requires a bit of work to setup properly. Below is some sample code for setting up sentry m
Link: https://streamhacker.com/2025/10/13/monitoring-celery-tasks-with-sentry/
Sentry is a great tool for monitoring celery tasks, and alerting when they fail or don’t run on time. But it requires a bit of work to setup properly. Below is some sample code for setting up sentry m
StreamHacker
Monitoring Celery Tasks with Sentry
Use sentry manual monitoring to monitor celery periodic tasks for async python functions
Talk Python Blog: Talk Python in Production Story
Link: https://talkpython.fm/blog/posts/talk-python-in-production-story/
If you were a website that started from modest beginnings and grew over ten years to support a ton of features and a variety of users, wouldn’t it be great if someone told your story?
My 15 minutes in
Link: https://talkpython.fm/blog/posts/talk-python-in-production-story/
If you were a website that started from modest beginnings and grew over ten years to support a ton of features and a variety of users, wouldn’t it be great if someone told your story?
My 15 minutes in
talkpython.fm
Talk Python in Production Story
If you were a website that started from modest beginnings and grew over ten years to support a ton of features and a variety of users, wouldn't it be great if someone told your story?
Brian Okken: Python lazy imports you can use today
Link: https://pythontest.com/python-lazy-imports-now/
There’s a proposal, PEP 810 – Explicit lazy imports for Python to natively support lazy importing starting in Python 3.15.
However, it has not been accepted yet, and even if it is accepted, 3.15 is a
Link: https://pythontest.com/python-lazy-imports-now/
There’s a proposal, PEP 810 – Explicit lazy imports for Python to natively support lazy importing starting in Python 3.15.
However, it has not been accepted yet, and even if it is accepted, 3.15 is a
Pythontest
Python lazy imports you can use today | PythonTest
There's a proposal for Python to natively support lazy importing starting in Python 3.15. However, there are techniques covered in this post that allow you to use lazy importing now with 3.13, 3.12, ... really every version of Python.
Real Python: Python Descriptors
Link: https://realpython.com/courses/python-descriptors/
Descriptors are a specific Python feature that power a lot of the magic hidden under the language’s hood. If you’ve ever thought that Python descriptors are an advanced topic with few practical applic
Link: https://realpython.com/courses/python-descriptors/
Descriptors are a specific Python feature that power a lot of the magic hidden under the language’s hood. If you’ve ever thought that Python descriptors are an advanced topic with few practical applic
Realpython
Python Descriptors – Real Python
Learn what Python descriptors are, how the descriptor protocol works, and where descriptors are useful, with hands-on examples.
PyCoder’s Weekly: Issue #704: Python 3.14 Released and More (Oct. 14, 2025)
Link: https://pycoders.com/issues/704
#704 – OCTOBER 14, 2025 View in Browser » Python 3.14: Exploring the New Features Python 3.14 is here! Christopher Trudeau returns to discuss the new version with Real Python team member Bartosz
Link: https://pycoders.com/issues/704
#704 – OCTOBER 14, 2025 View in Browser » Python 3.14: Exploring the New Features Python 3.14 is here! Christopher Trudeau returns to discuss the new version with Real Python team member Bartosz
Pycoders
PyCoder’s Weekly | Issue #704
Python 3.14 Released and More
The Python Coding Stack: Creating a Singleton Class in Python And Why You (Probably) Don’t Need It
Link: https://www.thepythoncodingstack.com/p/creating-a-singleton-class-in-python
If you spend long enough in the programming world, you’ll come across the term singleton at some point. And if you hadn’t seen this term yet, well, now you have!In Python, you don’t need singleton cla
Link: https://www.thepythoncodingstack.com/p/creating-a-singleton-class-in-python
If you spend long enough in the programming world, you’ll come across the term singleton at some point. And if you hadn’t seen this term yet, well, now you have!In Python, you don’t need singleton cla
Thepythoncodingstack
Creating a Singleton Class in Python And Why You (Probably) Don’t Need It
Creating a singleton class is a great exercise to understand object creation in Python, but you’re unlikely to need it in your code.