Write more maintainable Python code, avoid these 15 code smells

This week we talk about code smells. 💡 Listen here: Also available on our YouTube channel: Code smells are characteristics in the code that might indicate deeper issues or potential problems. While they’re not necessarily bugs, they can be a sign of poor code quality or maintainability issues. 😱 We distilled 15 common smells ranging… Continue reading Write more maintainable Python code, avoid these 15 code smells

⚠️Why you should avoid import * in Python 🐍

Anyone who’s worked with Python knows that modules can be a Godsend, saving you time, effort, and many lines of code. They even have namespacing built-in 💪 😍 To expand on this a bit: However, not all ways of using modules are equally beneficial. In this article, we will discuss why using import * can… Continue reading ⚠️Why you should avoid import * in Python 🐍

11 Planning and Productivity tips for Python developers

This week we talk with Sambhavi Dhanabalan about productivity as a developer. She shares 11 tips from her experience: 3 around planning and 8 generic tips. Watch here: Or listen here: We also talk about her background, wins and a book she’s reading. Enjoy this insightful conversation with Sambhavi. We’re sure that if you follow… Continue reading 11 Planning and Productivity tips for Python developers

Django Plugin Recommendations by Antonio Melé | Top 10 Picks for Web Development

Watch here: Or listen here: He’s back! Django by Example book author Antonio Melé 😍 Not only that, we did this interview in person at a cafeteria on the beach 🏖  In this episode he shares his 10 favorite Django plugins 💪 💡 1. Django Debug Toolbar 2. Django REST Framework 3. Django Channels 4. Django Celery 5. Django Extensions… Continue reading Django Plugin Recommendations by Antonio Melé | Top 10 Picks for Web Development

Help, I need to refactor a mega class! Here are 5 tips …

Somebody asked the other day for tips on how to refactor a mega-class? It was actually one of the first tasks on the new job, ouch! A single class, several thousands lines of code, no tests available 😮 You might scratch your head and say WTF?! After all, good developers decouple code into manageable pieces… Continue reading Help, I need to refactor a mega class! Here are 5 tips …

A debugging tale

I ran into an interesting issue debugging the other day … I used isort with pre-commit to automatically sort imports before committing my code. This is a huge time saver and I am very thankful for both tools, as well as black and flake8. They save a ton of time and they instantly boost the… Continue reading A debugging tale