Seth Michael Larson: Join the PyCon US 2025 Security Mini-Track! 🐍🛡️
Did you know that I'm co-organizing an open source supply-chain security mini-track with Dustin Ingram during PyCon US 2025 open spaces? This mini-track is for both users and maintainers of open source...
View ArticlePython Bytes: #428 How old is your Python?
<strong>Topics covered in this episode:</strong><br> <ul> <li><a href="https://cbea.ms/git-commit/?featured_on=pythonbytes"><strong>How to Write a Git Commit...
View ArticleTalk Python to Me: #501: Marimo - Reactive Notebooks for Python
Have you ever spent an afternoon wrestling with a Jupyter notebook, hoping that you ran the cells in just the right order, only to realize your outputs were completely out of sync? Today's guest has a...
View ArticleReal Python: Namespaces in Python
A Python namespace is a mapping from names to objects. It works like a dictionary where keys are object names and values are the objects themselves. Namespaces organize variables and functions in a...
View ArticlePyPodcats: Episode 8: With Mojdeh Rastgoo
Learn about Mojdeh's journey. Since discovering Python and open source community in 2016, Mojdeh has been actively contributing to the community and striving for diversity and inclusion by...
View ArticlePyCon: What to expect at PyCon US sprints
The conference starts days before the first official talk. There’s topic-specific summits, sponsor presentations, and deep-dive tutorials that are definitely worth checking out. Similarly, the...
View ArticleReal Python: Creating a Python Dice Roll Application
In this video course, you’ll learn how to create a Python dice roll simulator. The course guides you through building a text-based user interface (TUI) application that simulates rolling dice using...
View ArticleDjango Weblog: DSF member of the month - Öykü Gümüş
For April 2025, we welcome Öykü Gümüş as our DSF member of the month! ⭐Öykü Gümüş has been Django developer for many years. She has been DjangoCon Europe organizer in 2018 and Django Girls mentor in...
View ArticlePyCoder’s Weekly: Issue #677: __dict__, Streamlit, Boolean Expressions, and...
#677 – APRIL 15, 2025View in Browser »Using Python’s .__dict__ to Work With Attributes In this tutorial, you’ll dive deeper into the .__dict__ attribute in Python objects. This attribute is a...
View ArticlePython Morsels: Practical uses of sets
Sets are unordered collections of values that are great for removing duplicates, quick containment checks, and set operations.Table of contentsWhat are sets?Sets are like dictionaries without...
View ArticleReal Python: Quiz: How to Exit Loops Early With the Python Break Keyword
In this quiz, you’ll test your understanding of the Python break statement. This keyword allows you to exit a loop prematurely, transferring control to the code that follows the loop.[ Improve Your...
View ArticlePyCharm: PyCharm, the Only Python IDE You Need
Estimated reading time: 3 minutesPyCharm is now one powerful, unified product! Its core functionality, including Jupyter Notebook support, will be free, and a Pro subscription will be available with...
View ArticlePyCharm: PyCharm 2025.1: Unified PyCharm, Free AI Tier, Junie Release, and More!
PyCharm 2025.1 brings major updates to improve your development experience.PyCharm is now a unified product, combining PyCharm Professional and Community Edition. Version 2025.1 also brings a free AI...
View ArticleReal Python: How to Exit Loops Early With the Python Break Keyword
In Python, the break statement lets you exit a loop prematurely, transferring control to the code that follows the loop. This tutorial guides you through using break in both for and while loops. You’ll...
View ArticleEuroPython: Tickets, Sessions, & Call for 2026 Host Venues!
Hello, Pythonistas! 🐍Tickets are on sale now! You can get your tickets at europython.eu/tickets📣 ProgrammeKeynote SpeakersWe are excited to announce three more keynote speakers!Sebastián Ramírez...
View ArticleDjango Weblog: Run your tests against Django's main!
This is the blog version of a talk! If you prefer, watch the recording on YouTube: Sage Abdullah - Run your tests against Django’s main! - Django London Meetup Django is known for its stability. The...
View ArticlePyCon: Community Organizer Summit and PSF & Meetups Discussion
Calling all community organizers! We want to sit down together and share what’s going well, what new tricks we’ve learned, and what’s been challenging in the area of organizing Python and Python...
View ArticleEveryday Superpowers: Preventing painful coupling
This is the second entry in a five-part series about event sourcing:Why I Finally Embraced Event Sourcing—And Why You Should TooWhat is event sourcing and why you should carePreventing painful coupling...
View ArticleGlyph Lefkowitz: Stop Writing `__init__` Methods
The HistoryBefore dataclasses were added to Python in version 3.7 — in June of 2018 — the __init__ special method had an important use. If you had a class representing a data structure — for example a...
View ArticleDaniel Roy Greenfeld: Using pyinstrument to profile FastHTML apps
FastHTML is built on Starlette, so we use Starlette's middleware tooling and then pass in the result. Just make sure you install pyinstrument. WARNING: NOT FOR PRODUCTION ENVIRONMENTS Including a...
View Article