How Much FASTER Is Python 3.13 Without the GIL? | Issue #12


Hi there,

The Global Interpreter Lock (GIL) has been holding Python back for years. But that’s about to change with Python 3.13! 🚀

In this week’s video, I’ll explain what this change means for you, the performance boosts you can expect with GIL disabled, and the hidden dangers you need to be aware of. ⚠️

Watch until the end to find out the potential future implications for Python development.

Enjoy the video and happy coding!

Cheers,

Arjan

# News

The Power of Python's urllib Module!

This week on the ArjanCodes blog, we’re diving into the versatile urllib module in Python. Whether you’re looking to enhance your web scraping capabilities or streamline URL parsing, this guide has something for everyone. 🐍💻

The blog is packed with practical examples and applications of the urllib module, covering everything from opening and reading URLs to handling encodings and constructing URLs. Click here to read the blog. 📚

The Software Architect Mindset

Choosing the right library for your application is just the beginning. To build a truly robust dashboard, you must also focus on data collection and transformation, storage solutions, and implementing necessary security measures. 🔒Mastering these aspects is crucial, and The Software Architect Mindset course is here to guide you.

This course offers a hands-on experience with a fully functional, cloud-based application using cutting-edge technologies. The backend is powered by Python and FastAPI, while the frontend is built with TypeScript and React. 🐍⚡️

By joining the course, you’ll gain valuable knowledge and save yourself years of trial and error. ⏳ Don’t miss this opportunity to become an exceptional software architect. Click here to explore The Software Architect Mindset course.

The 2024 Stack Overflow Developer Survey

The 2024 Stack Overflow Developer Survey results are out! 🎉 This annual survey offers insights into the tools, trends, and experiences of developers worldwide.

Curious about the most popular programming languages? Want to know which emerging technologies are making waves? Or maybe you’re keen on understanding the latest industry challenges? This survey has it all.

It’s a must-read for anyone passionate about development and looking to stay ahead of the curve. Check out the full results and see how your experiences stack up against other developers around the globe. Dive in and discover the trends that are shaping the future of our industry. 🚀

# Community

How do you balance code readability with abstraction when using one-liners in Python? 🐍

This community discussion dives into the topic, debating when to keep code concise versus breaking it into functions for clarity and reuse.

Our community members share their experiences with comprehensions, map, filter, and sort functions, offering insights on maintaining clean and efficient code.

Don’t miss out on these valuable coding tips! Hop on Discord and read the full thread here. 📚


Do you enjoy my content on YouTube and would you like to dive in deeper? Check out my online courses below. They've helped thousands of developers take the next step in their careers.

🚀 The Mindset Online Course Series

The goal of this series is to help junior developers grow their skills to become senior developers faster.

💥 Other Courses

💡 If you’re part of a development team at a company, I offer special packages for companies that give your team the tools to consistently write high-quality code and dramatically increase your team's productivity.

🪄 Learntail

My team and I created an AI quiz generator designed to accelerate your learning, called Learntail. You can try it for free or unlock even more capabilities and features with the monthly subscription. Take a look here.

Unsubscribe | Send by ArjanCodes

Wolvenplein 25, Utrecht, UT 3512 CK

The Friday Loop

Every Friday, you'll get a recap of the most important and exciting Python and coding news. The Friday Loop also keeps everyone posted on new ArjanCodes courses and any limited offers coming up.

Read more from The Friday Loop

Hi there, You’ve probably heard developers say "That’s not very Pythonic…" But what is Pythonic code, really? Is it about using list comprehensions? Avoiding for-loops? Dressing up like Guido van Rossum? In this week’s video, I answer that question by taking a small, messy Python script and refactoring it step-by-step using the principles behind idiomatic Python. Along the way, I’ll show you what it means to think like a Python developer, using things like: Functions instead of unnecessary...

Hi there, Have you ever found yourself writing functions like this? def render_article(article_id, db, logger, user, config, feature_flags, etc): …and then passing the same parameters through five different layers of your app? In my latest video, I walk through a realistic Python example and show how to fix this mess using the Context Object Pattern. I’ll start with the "before" version, refactor step by step, and explore: How to group related dependencies using a context object When this...

Hi there, This week’s video is all about uv workspaces, and why they’ve completely changed the way I manage Python projects. In the video, I walk you through a real-world example: I build a CLI tool and a FastAPI API that both fetch and summarize news headlines using OpenAI. But the real lesson is in how the project is structured. I show you how to share a local package between apps, define common dependencies like openai or httpx only once. And you can manage everything using uv’s workspace...