Skip to content

Blog

#68: Use Doctest to Test Your Documentation

Documentation is an important part of every software project – and probably the most neglected one. Nothing is worse than outdated documentation with examples that no longer work. Python has a great little helper to ensure that your documentation is up to date.

#62: Logging in Python

Logging allows us to understand what is going on inside our applications. Luckily for us, Python comes with a developer-friendly logger that works without much set-up code.