ADP
ADP is a bare-bones Python Debugger
...ADP stores details of the path taken by your script and variables and their values in a SQLITE3 database.
The current release supports LIVE running. A future release will support DEAD running.
In DEAD runs you’ll be able to replay a LIVE run from the database recording, which means that you can start at any point and travel in either direction and the value of the variables will be those that were current at that point of time in the LIVE run.
Imagine your script crashed and you can replay from there backwards, and see how you got there and the values the variables had.
...