up vote 6 down vote favorite
10
share [g+] share [fb]

When starting a django application using python manage.py shell, I get an InteractiveConsole shell - I can use tab completion, etc.

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)

When just starting a python interpreter using python, it doesn't offer tab completion.

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?

link|improve this question

80% accept rate
When you type in python, you get a >>> prompt, right? That's the interactive shell. What's your question? – S.Lott Oct 29 '08 at 13:15
It doesn't offer tab completion. That is the problem. – ashchristopher Oct 29 '08 at 13:18
Please update your question to specify that. – Daryl Spitzer Oct 29 '08 at 13:42
feedback

3 Answers

up vote 12 down vote accepted

I think django does something like http://www.python.org/doc/2.5.2/lib/module-rlcompleter.html

If you want to have a really good interactive interpreter have a look at http://ipython.scipy.org/.

link|improve this answer
1  
I second the recommendation of IPython. – Lawrence Johnston Oct 29 '08 at 16:44
feedback

I may have found a way to do it.

Create a file .pythonrc

# ~/.pythonrc
# enable syntax completion
try:
    import readline
except ImportError:
    print "Module readline not available."
else:
    import rlcompleter
    readline.parse_and_bind("tab: complete")

then in your .bashrc file, add

export PYTHONSTARTUP=~/.pythonrc

That seems to work.

link|improve this answer
feedback

For the record, this is covered in the tutorial: http://docs.python.org/tutorial/interactive.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.