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