What is your favorite IPython feature? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:51:09Zhttp://stackoverflow.com/feeds/question/252542http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/252542/what-is-your-favorite-ipython-feature8What is your favorite IPython feature?Lawrence Johnston2008-10-31T03:42:17Z2008-10-31T18:23:09Z
<p>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?</p>
http://stackoverflow.com/questions/252542/what-is-your-favorite-ipython-feature/252544#2525444Answer by Lawrence Johnston for What is your favorite IPython feature?Lawrence Johnston2008-10-31T03:44:01Z2008-10-31T03:51:33Z<p>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).</p>
<p>Nice things you can do once you've set up your own editor include:</p>
<pre><code>edit /foo/bar/fizz.py
</code></pre>
<p>to create a file with the given name and location to easily write a new module and:</p>
<pre><code>edit modulename
</code></pre>
<p>to edit the code for a given module (provided it's currently imported). For example you could type:</p>
<pre><code>import subprocess
edit subprocess
</code></pre>
<p>and you'll immediately be thrown into your editor of choice with the source for the subprocess module open.</p>
http://stackoverflow.com/questions/252542/what-is-your-favorite-ipython-feature/253253#2532535Answer by DZPM for What is your favorite IPython feature?DZPM2008-10-31T11:56:41Z2008-10-31T11:56:41Z<p>The "?" prints the useful details of an object, including the docstrings: <a href="http://ipython.scipy.org/doc/rel-0.9.1/html/interactive/reference.html#dynamic-object-information" rel="nofollow">Dynamic object information</a></p>
<p>Example:</p>
<pre><code>In [1]: foo = "Hello StackOverflow!"
In [2]: foo ?
Type: str
Base Class: <type 'str'>
String Form: Hello StackOverflow!
Namespace: Interactive
Length: 20
Docstring:
str(object) -> string
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
In [3]: foo.split ?
Type: builtin_function_or_method
Base Class: <type 'builtin_function_or_method'>
String Form: <built-in method split of str object at 0xb78ef590>
Namespace: Interactive
Docstring:
S.split([sep [,maxsplit]]) -> list of strings
Return a list of the words in the string S, using sep as the
delimiter string. If maxsplit is given, at most maxsplit
splits are done. If sep is not specified or is None, any
whitespace string is a separator.
</code></pre>
http://stackoverflow.com/questions/252542/what-is-your-favorite-ipython-feature/253783#2537834Answer by Pev for What is your favorite IPython feature?Pev2008-10-31T14:48:38Z2008-10-31T14:48:38Z<p>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...</p>
<p>Probably not a good example, but diffing two directories looks like this...</p>
<pre><code>files = !find -type f
for f in files:
other = f.replace(".", "../other_dir", 1)
diff $f $other
</code></pre>
<p>And I find igrep easier to use for simple searches then </p>
<pre><code>find ... | xargs grep....
</code></pre>
<p>bookmarks are nice to and dhist.</p>
http://stackoverflow.com/questions/252542/what-is-your-favorite-ipython-feature/253818#2538183Answer by Pat Notz for What is your favorite IPython feature?Pat Notz2008-10-31T14:58:08Z2008-10-31T14:58:08Z<p>I'm a huge fan of the tab completion as well as the pretty printing of <code>dir( thing )</code> and <code>doc( thing )</code>.</p>