Real Python's Avatar

Real Python

@realpython.com.bsky.social

Online #Python Training & Expert Community: Tutorials, Video Courses, Books, Quizzes...and More! Join 1M+ Pythonistas at http://realpython.com

1,965 Followers  |  14 Following  |  2,189 Posts  |  Joined: 15.11.2024  |  1.6269

Latest posts by realpython.com on Bluesky

PyData London 2025 Videos #python

PyData London 2025 Videos #python

05.08.2025 16:00 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Preview
The Real Python Podcast Is Here! The Real Python Podcast is finally live! Tune in for interesting guests, interviews with expert Pythonistas, and lots of behind-the-scenes with the Real Python Team.

🐍🎧 The Real #Python Podcast Is Here!

05.08.2025 15:00 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Exploring Python T-Strings – Real Python Python 3.14 introduces t-strings: a safer, more flexible alternative to f-strings. Learn how to process templates securely and customize string workflows.

πŸ“ΊπŸ Exploring Python T-Strings realpython.com/courses/expl...

05.08.2025 14:24 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
A Cleaner Way to Work with Databases in Python #python The SQLModel library offers a clean, Pythonic alternative to writing raw SQL by combining the power of SQLAlchemy with the validation and type safety of Pydantic.

A Cleaner Way to Work with Databases in Python #python

05.08.2025 03:00 β€” πŸ‘ 8    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
What's New in Python 3.12 In this video course, you'll explore the new features that Python 3.12 brings to the table. These include improved f-strings, better error messages, changes to CPython internals, additions to static typing, and more

πŸπŸ“Ί What's New in Python 3.12 [Video]

#python

05.08.2025 02:00 β€” πŸ‘ 4    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Defining Your Own Python Function In this tutorial, you'll learn how to define and call your own Python function. You'll also learn about passing data to your function, and returning data from your function back to its calling environment.

πŸπŸ“° Defining Your Own #Python Function

04.08.2025 22:30 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Want to level up your Python skills for FREE? 🐍

We will host a Live Python Workshop on August 6, and you're invited!

πŸ“Œ It's beginner-friendly
πŸ’¬ Includes live Q&A
πŸ’‘ Perfect to sharpen your skills

πŸ‘‰ Sign up here: buff.ly/Uit2djJ

04.08.2025 21:21 β€” πŸ‘ 2    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Preview
Logging an Uncaught Exception #python Uncaught exceptions will crash an application. If you don't know how to log these, it can be difficult to troubleshoot such a crash.

Logging an Uncaught Exception #python

04.08.2025 19:30 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Managing Python Projects With uv: An All-in-One Solution In this tutorial, you'll learn how to create and manage your Python projects using uv, an extremely fast Python package and project manager written in Rust:

πŸπŸ“° In this tutorial, you'll learn how to create and manage your Python projects using uv, a high-speed Python package and project manager written in Rust.

#python

04.08.2025 17:30 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Making a Simple HTTP Server With Asyncio Protocols #python Learn how to build a fast, minimal HTTP server using `asyncio.Protocol`, complete with routing, parsing, and response handling from scratch.

Making a Simple HTTP Server With Asyncio Protocols #python

04.08.2025 16:00 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Mastering While Loops Quiz – Real Python Practice indefinite iteration using the Python "while" loop. Test your knowledge of Python loops, keywords, and best practices today.

β“πŸ Quiz: Mastering While Loops Quiz realpython.com/quizzes/mast...

04.08.2025 15:09 β€” πŸ‘ 4    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0
Preview
The Factory Method Pattern and Its Implementation in Python In this Python tutorial, you'll learn about the Factory Method design pattern and its implementation. You'll understand the components of Factory Method, when to use it, and how to modify existing code to leverage it. You'll also see a general purpose ...

πŸπŸ“° The Factory Method Pattern and Its Implementation in Python

In this Python tutorial, you'll learn about the Factory Method design pattern and its implementation.
#python

04.08.2025 15:00 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
mimetypes | Python Standard Library – Real Python Provides tools to map filenames to MIME types and vice versa.

🐍 Python Term of the Day: mimetypes (Python Standard Library)

Provides tools to map filenames to MIME types and vice versa.

realpython.com/ref/stdlib/m...

04.08.2025 14:41 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Using Dictionaries in Python Quiz – Real Python Revisit Python's dictionary data type in this quick quiz. How does it work, why is it useful, and how is it different from a list?

β“πŸ Quiz: Using Dictionaries in Python Quiz realpython.com/quizzes/dict...

04.08.2025 14:38 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Skip Ahead in Loops With Python's Continue Keyword – Real Python Learn how Python's continue statement works, when to use it, common mistakes to avoid, and what happens under the hood in CPython byte code.

πŸπŸ“° Skip Ahead in Loops With Python's Continue Keyword realpython.com/python-conti...

04.08.2025 14:06 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
First Steps With LangChain Quiz – Real Python Large language models (LLMs) have taken the world by storm. In this step-by-step video course, you'll learn to use the LangChain library to build LLM-assisted applications.

β“πŸ Quiz: First Steps With LangChain Quiz realpython.com/quizzes/firs...

04.08.2025 13:52 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Introduction to Web Scraping With Python Quiz – Real Python Practice the basics of web scraping in Python using Beautiful Soup and MechanicalSoup, including setup, parsing, and automation tools.

β“πŸ Quiz: Introduction to Web Scraping With Python Quiz realpython.com/quizzes/intr...

04.08.2025 13:22 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Intro to Object-Oriented Programming (OOP) in Python Quiz – Real Python Test your knowledge of object-oriented programming (OOP) in Python and how to work with classes, objects, and constructors. Initialize... Go!

β“πŸ Quiz: Intro to Object-Oriented Programming (OOP) in Python Quiz realpython.com/quizzes/intr...

04.08.2025 13:22 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Build a Scalable Flask Web Project From Scratch Quiz – Real Python Test your knowledge of Flask basics, blueprints, project structure, Jinja templates, static files, and setup steps.

β“πŸ Quiz: Build a Scalable Flask Web Project From Scratch Quiz realpython.com/quizzes/flas...

04.08.2025 13:22 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Using the "or" Boolean Operator in Python Quiz – Real Python Practice using the python or operator to evaluate conditions, set default values, and simplify branching. Take the quick quiz to learn.

β“πŸ Quiz: Using the "or" Boolean Operator in Python Quiz realpython.com/quizzes/pyth...

04.08.2025 13:06 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Working With Python's Built-in Exceptions Quiz – Real Python Test your knowledge of Python's built-in exceptions by answering interactive questions. Learn effective error handling techniques.

β“πŸ Quiz: Working With Python's Built-in Exceptions Quiz realpython.com/quizzes/work...

04.08.2025 13:06 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Python Namespace Packages Quiz – Real Python Practice your knowledge about namespace packages in Python. Revisit managing multiple packages without an __init__.py file.

β“πŸ Quiz: Python Namespace Packages Quiz realpython.com/quizzes/pyth...

04.08.2025 13:06 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

🐍🎧 Design Patterns That Don't Translate to Python

Do the design patterns learned in other programming languages translate to coding in Python? Christopher Trudeau is back, bringing another batch of PyCoder's Weekly articles and projects.

buff.ly/11N4O8x

04.08.2025 12:58 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Skip Ahead in Loops With Python's Continue Keyword Quiz – Real Python Test your understanding of Python's continue keyword, which allows you to skip code in a loop for the current iteration and jump immediately to the next one.

β“πŸ Quiz: Skip Ahead in Loops With Python's Continue Keyword Quiz realpython.com/quizzes/pyth...

04.08.2025 12:04 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Start Using a Debugger With Your Python Code Are you still sprinkling print statements throughout your code while writing it? Print statements are often clunky and offer only a limited view of the state of your code. Have you thought there must be a better way? This week on the show, we have Nina...

🐍🎧 Start Using a Debugger With Your Python Code β€” Start Using a Debugger With Your Python Code

04.08.2025 04:00 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
`uv` 0.8.0 Released #python Release Notes Since we released uv 0.7.0 in April, we've accumulated various changes that improve correctness and user experience, but could break some workflows. This release contains those change...

`uv` 0.8.0 Released #python

04.08.2025 03:00 β€” πŸ‘ 8    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Creating Web Maps From Your Data With Python Folium You'll learn how to create web maps from data using Folium. The package combines Python's data-wrangling strengths with the data-visualization power of the JavaScript library Leaflet. In this video course, you'll create and style a choropleth world map...

πŸπŸ“Ί Creating Web Maps From Your Data With Python Folium [Video]

#python

04.08.2025 02:00 β€” πŸ‘ 4    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
How to Provide Test Fixtures for Django Models in Pytest In this step-by-step tutorial, you'll learn how to use fixtures to simplify your testing in pytest. If you use Django, pytest fixtures can help you write tests that are painless to update and maintain even as you make changes to your models.

πŸπŸ“° How to Provide Test Fixtures for Django Models in Pytest
#python

03.08.2025 22:30 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Shallow vs Deep Copying of Python Objects What's the difference between a shallow copy and a deep copy of a Python object? Learn how to clone arbitrary objects in Python, including your own custom classes:

πŸπŸ“° What's the difference between a shallow copy and a deep copy of a Python object? Learn how to clone arbitrary objects in Python, including your custom classes.

#python

03.08.2025 17:30 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
The Python math Module: Everything You Need to Know In this step-by-step tutorial, you’ll learn all about Python’s math module for higher-level mathematical functions. Whether you’re working on a scientific project, a financial application, or any other type of programming endeavor, you just can’t escap...

πŸπŸ“° The #Python math Module: Everything You Need to Know

03.08.2025 15:00 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

@realpython.com is following 14 prominent accounts