This repository contains code related to the Real Python tutorial How to Use Loguru for Simpler Python Logging.
You should first create and activate a virtual environment:
$ python -m venv venv/
$ source venv/bin/activateInstall the pinned dependencies from requirements.txt:
(venv) $ python -m pip install -r requirements.txtThen you can execute the provided Python scripts, for example:
(venv) $ python basic_logging.py