<https://github.com/CCExtractor/vardbg> A simple P...
# thinking-together
k
https://github.com/CCExtractor/vardbg A simple Python debugger and profiler that generates animated visualizations of program flow. It is meant to help with learning algorithms by allowing you to visualize what the algorithms are doing.
t
Interesting. The GIF from the
README.md
does not seem to be available.
k
Is this not accessable to you?

https://user-images.githubusercontent.com/7930239/73331199-ead91e00-4217-11ea-939a-54e230827019.gif

t
nope.
hmm, funny. I switched the browser to a more permissive one, and now it’s accessible.
Interesting GIF. By what rules do the vertical lines get drawn? Only when something happens to lst?
k
I’m not quite sure as I’m not the author of the library!
👍 1
But from the looks of it, it seems to be tracking the list being sorted. So whenever a variable of the list is changed, it seems to draw the line. Notice that no line is drawn when the local variables change!
t
Yes, that is why I asked 🙂. Thanks.
c
You might already know of this resource, but the style reminds me of what pythontutor.org renders