How do I add tab completion to the Python shell? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T00:43:23Z http://stackoverflow.com/feeds/question/246725 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell 3 How do I add tab completion to the Python shell? ashchristopher 2008-10-29T13:09:10Z 2008-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#246774 9 Answer by Peter Hoffmann for How do I add tab completion to the Python shell? Peter Hoffmann 2008-10-29T13:21:43Z 2008-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#246779 6 Answer by ashchristopher for How do I add tab completion to the Python shell? ashchristopher 2008-10-29T13:24:39Z 2008-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#247513 2 Answer by Thomas Wouters for How do I add tab completion to the Python shell? Thomas Wouters 2008-10-29T16:39:03Z 2008-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>