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, 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...

Hi there, When I see an if-statement with multiple elifs in my code, it almost always triggers an investigation. Is there some way to rewrite this to make the logic simpler? Is there a chance that in the future I'll need to add even more complexity? If so, I'll try to redesign the code so that I don't need that chain of if-elif statements. In this week’s video, I cover a design pattern that helped me eliminate many of those chains from a project + at the same time made the code easier to...

Hi there, I just published a new video about Python 3.14, and no, it’s not just about the version number lining up with π (though that does make me feel more complete). The new release brings a bunch of improvements, but I decided to focus on the features I personally love and that I actually use in my day-to-day work. Here’s what I cover in the video: A small but beautiful improvement to exception syntax (fewer parentheses!) Native Zstandard compression with way better performance than gzip...