My Python testing style guide

This post is an attempt to catalog some of my practices around testing Python projects. It’s not meant to be treated as dogma- I anticipate I’ll update this significantly over time. Read more

Similar

Python Iterators Explained

If you have written some Python code and used the for loop, you have already used iterators behind the scene but you probably didn’t know about it. Iterators are objects that we can iterate over one by one. They are practically everywhere in a Python code... (more…)

Read more »