This repository accompanies the workshop "Debug Like a Pro".
The debugger is a tool that lets you inspect your code line by line as it runs, and thereby discover bugs much faster. Being able to use the debugger a very valuable skill – no matter what’s your programming level or your role. This workshop takes a learning-by-doing approach and teaches the concepts and usage of the debugger on an example codebase.
-
Install an IDE, for example:
- PyCharm (https://www.jetbrains.com/help/pycharm/installation-guide.html)
- VS Code (https://code.visualstudio.com/docs/setup/setup-overview) + Python support
-
Clone this repository
-
Install the requirements
pip install -r requirements.txt
The original workshop material was prepared by Marianne Krokotsch.