I use IPython as my main Python shell replacement (this also includes Django development, debugging - (i)pdb, etc.) and Dreampie when writing a prototype or "playing around".
Syntax highlighting, auto complete and more within Python interpreter
31–33 of 33 posts
I have tested it and it's not bad but the IPython (with "save history" & "virtualenv" plugin) + Dreampie combination is still a lot better and way more powerful.
Re: Syntax highlighting, auto complete and more within Python interpreter
#32Earlier quoted context omitted.
I recently started using IPython, also with a comparable feature list: http://ipython.scipy.org/moin/ Does anyone know off the top of their head which of these is the most active?
I suspect IPython is. I know a number of people using ipython, but I've never heard of the others before today. Ipython is widely used by the scipy crowd, at the very least.
iPython also has ipdb.
import ipdb
then ipdb.set_trace()
Where you'd like to launch ipython in your app.Re: Syntax highlighting, auto complete and more within Python interpreter
#33I have tested it and it's not bad but the IPython (with "save history" & "virtualenv" plugin) + Dreampie combination is still a lot better and way more powerful. I use IPython as my main Python shell replacement (this also includes Django development, debugging - (i)pdb, etc.) and Dreampie when writing a prototype or "playing around".
I use and love ipython/ipdb. Do you know if DreamPie or BPython can be used to debug?