I have a long running Python program that raises exception at some point. Is there some way to run this from ipython session and stop on the exception so I could examine the live data?
|
You may want
If you're not familiar with using PDB, check out some docs first. Edit thanks to Thomas K |
||||
|
yes, depending on how you are setup. you can import your program and run it like any other module inside a try except block.
If your program is not in a function you may need to put the try block around your import. The problem with this approach is that the variables you are wanting to look at may be no longer in scope. I usually use print statements or log messages at various points to figure out what is not looking like I am expecting. |
|||
|