For my debugging needs,pdb is pretty good. However, it would be MUCH cooler ( and helpful ) if I could go into ipython. Is this thing possible?
|
|
There is an
It's installable via the usual |
||
|
|
|
Normally, when I use ipython, I turn automatic debugging on with the "pdb" command inside it. I then run my script with the "run myscript.py" command in the directory where my script is located. If I get an exception, ipython stops the program inside the debugger. Check out the help command for the magic ipython commands (%magic) |
||
|
|
|
From the IPython docs:
will launch an IPython shell programmatically. Obviously the values in the Note that you have to hard-code this in; it's not going to work the way |
||
|
|
|
|
The equivalent of
with IPython is something like:
It's a bit verbose, but good to know if you don't have ipdb installed. The |
||
|
|
