Skip to content
Mikhail Kaluzhnyy edited this page Aug 13, 2022 · 4 revisions

Welcome to the python-trackers wiki!

Python-trackers is open-source Python library, that helps to track the execution of your Python code. The package is avalible on PyPI and via pip install trackers

Current version 🔥

Python-trackers is now updated to version 1.1.0, which brings out brand new FuncTracker, that will help you to track execution of fuctions via flags.
More details about current release are present at Releases page

Explore 🔍

In this section you may find every tracker that is present in the package and its purpose.

Loop trackers

  • ForTracker - helps to track the progress of execution of for loop by providing current iteration index and, if possible, the length of the iterable that has been provided and the elapsed time since start of loop execution.
  • WhileTracker - helps to track the progress of execution of while loop by providing current iteration index and by showing an indicator, that updates each cycle iteration.

Function trackers

  • FuncTracker - helps to track the progress of execution of function by placing flags at certain places at code and showing variable values and execution time.