Debugging with IPython shell

Posted on Mon 02 January 2017 in python • 1 min read

Debugging in Python is very easy with IPython, you don't need pdb or so, just do a simple

from IPython import embed

#Inside some functions
embed()

That's all.

Reference

See https://ipython.org/ipython-doc/3/api/generated/IPython.terminal.embed.html#IPython.terminal.embed.embed