Dynamo Python - Debugger recommendations

Simple question: Can anyone recommend a debugger for Python in Dynamo?

It’s not just a simple but very good question,
still no answers?
Nobody tried PyCharm or something?

1 Like

How to even print variables to a log file?

are u looking for something like this: http://www.pythontutor.com/visualize.html#mode=edit ? U need to copy paste the python code and add the values/lists for the input variables

@Thomas_Vogt1 it needs to be capable of showing the stack from a script and capable of debugging the Dynamo/Revit API. Really needs to include functionality for stepping over, stepping in etc and enable breakpoints.

There is a module (pdb) in Python https://docs.python.org/2/library/pdb.html for debugging which I’ve discovered since my original post.

2 Likes