ipython

Auto-load a module on python startup

I want IPython or the Python interpreter to auto-load a module when I start them. Is it possible? For example when I start IPython: $ ipython ... >>> from __future__ import division >>> from mymodule import * In [1]: Something like this. Thanks! ...

How to set number of digits for float point output in Ipython

In octave the output of float point numbers is limited by default to 4 digits (%.4f). Is there a way to set this behavior using IPython? ...

pygtk FileChooserDialog slows down interpreter

I'm trying to use FileChooserDialog to get a native gnome dialog box in a python script. After the script executes, my ipython -pylab prompt experiences a significant slow down. This problem also exists from a plain python prompt. I've isolated the problem to the dialog box. The following example (which has been posted elsewhere as a...