I've been learning (and enjoying learning!) Python via the IPython interactive shell recently... What's your favorite feature in IPython? Are there any tips and tricks you've picked up that other people might not know about?
|
8
|
|||
|
|
|
The "?" prints the useful details of an object, including the docstrings: Dynamic object information Example:
|
||
|
|
|
This is a simple one, but setting the editor used by %edit to Notepad++ in Windows (via the EDITOR environment variable) and Emacs on the Mac (via the ~/.ipython/ipy_user_conf.py file). Nice things you can do once you've set up your own editor include:
to create a file with the given name and location to easily write a new module and:
to edit the code for a given module (provided it's currently imported). For example you could type:
and you'll immediately be thrown into your editor of choice with the source for the subprocess module open. |
|||
|
|
|
Being able to use python for shell scripts comes in handy quite often. Being able to substitute python variables into the script with $ is also good... Probably not a good example, but diffing two directories looks like this...
And I find igrep easier to use for simple searches then
bookmarks are nice to and dhist. |
||
|
|
|
|
I'm a huge fan of the tab completion as well as the pretty printing of |
||
|
|
