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

Hey there, Heard of MCP? It stands for Model Context Protocol: an open standard that lets AI models like Claude or ChatGPT connect to real tools and data. In my latest video, I explain what MCP actually is, and show a working example where Claude can search YouTube videos using MCP. In the video you’ll learn: Why AI models can’t just call your API How MCP bridges that gap Two ways to structure your MCP integration Happy coding! Cheers, Arjan # News Upcoming Python Documentary CultRepo...

Hi there, We all use def to define functions in Python. But did you know there are at least 7 other ways to do it? Some of them are useful. Some are questionable. And the last one is so ridiculous, it might crash your interpreter. In this week’s video, I walk through each method, explain how it works, why you should use it (or not), and what it teaches us about how Python works under the hood. This was a really interesting topic to explore. I learned a lot from it and I hope you will too....

Hi there, Functional programming in Python can be elegant… but not always. ⚠️ In this week’s video, I walk through four common scenarios where replacing for loops with map() and filter() actually leads to worse code. Not just less readable—but also harder to debug, more error-prone, and sometimes even misleading. We’ll dive into: Exception handling that becomes a mess inside a lambda Side effects (like writing to files) that violate functional principles Nested logic that turns into...