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
|
|||||||||
|
|
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 |
|||
|
|
|
In IPython 0.11, you can embed IPython directly in your code like this Your program might look like this
This is what happens when you run it (I arbitrarily chose to run it inside an existing ipython session. Nesting ipython sessions like this in my experience can cause it to crash).
|
|||
|
|
|
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) |
|||
|
|
|
If you're using a more modern version of IPython (> 0.10.2) you can use something like
But it's probably better to just use ipdb |
|||
|
|
|
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 |
|||
|
|
|
I like to simply paste this one-liner in my scripts where I want to set a breakpoint:
Newer version might use:
|
||||
|
|
|
The fast-and-easy way:
Then just write
wherever you want to start debugging your program. |
|||
|
|
|
Looks like modules have been shuffled around a bit recently. On IPython 0.13.1 the following works for me
Though alas, it's all pretty worthless in qtconsole. |
|||
|
|
|
Newer versions of IPython provide an easy mechanism for embedding and nesting IPython sessions into any Python programs. You can follow the following recipe to embed IPython sessions:
Then use |
|||
|
|