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!