How do I add tab completion to the Python shell? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T00:43:23Zhttp://stackoverflow.com/feeds/question/246725http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell3How do I add tab completion to the Python shell?ashchristopher2008-10-29T13:09:10Z2008-10-29T16:39:03Z
<p>When starting a django application using <code>python manage.py shell</code>, I get an InteractiveConsole shell - I can use tab completion, etc.</p>
<pre><code>Python 2.5.1 (r251:54863, Apr 15 2008, 22:57:26)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
</code></pre>
<p>When just starting a python interpreter using <code>python</code>, it doesn't offer tab completion.</p>
<p>Can someone tell me what django is doing to give me an interactive console, or what I need to do to start an interactive console without a django app?</p>
http://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell/246774#2467749Answer by Peter Hoffmann for How do I add tab completion to the Python shell?Peter Hoffmann2008-10-29T13:21:43Z2008-10-29T13:21:43Z<p>I think django does something like <a href="http://www.python.org/doc/2.5.2/lib/module-rlcompleter.html" rel="nofollow">http://www.python.org/doc/2.5.2/lib/module-rlcompleter.html</a> </p>
<p>If you want to have a really good interactive interpreter have a look at
<a href="http://ipython.scipy.org/" rel="nofollow">http://ipython.scipy.org/</a>.</p>
http://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell/246779#2467796Answer by ashchristopher for How do I add tab completion to the Python shell?ashchristopher2008-10-29T13:24:39Z2008-10-29T13:24:39Z<p>I may have found a way to do it.</p>
<p>Create a file .pythonrc</p>
<pre><code># ~/.pythonrc
# enable syntax completion
try:
import readline
except ImportError:
print "Module readline not available."
else:
import rlcompleter
readline.parse_and_bind("tab: complete")
</code></pre>
<p>then in your .bashrc file, add</p>
<pre><code>export PYTHONSTARTUP=~/.pythonrc
</code></pre>
<p>That seems to work.</p>
http://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell/247513#2475132Answer by Thomas Wouters for How do I add tab completion to the Python shell?Thomas Wouters2008-10-29T16:39:03Z2008-10-29T16:39:03Z<p>For the record, this is covered in the tutorial: <a href="http://docs.python.org/tutorial/interactive.html" rel="nofollow">http://docs.python.org/tutorial/interactive.html</a></p>