In a python script, is there any way to tell if the interpreter is in interactive mode? This would be useful, for instance, when you run an interactive python session and import a module, slightly different code is executed (for example, log file writing is turned off, or a figure won't be produced, so you can interactively test your program while still executing startup code so variables etc. are declared)

I've looked at http://stackoverflow.com/questions/640389/tell-whether-python-is-in-i-mode and tried the code there, however, that function only returns true if python has been invoked with the -i flag and not when the command used to invoke interactive mode is python with no arguments.

What I mean is something like this:

if __name__=="__main__":
    #do stuff
elif __pythonIsInteractive__:
    #do other stuff
else:
    exit()
link|improve this question

feedback

5 Answers

up vote 11 down vote accepted

__main__.__file__ doesn't exist in the interactive interpreter:

import __main__ as main
print hasattr(main, '__file__')

This also goes for code run via python -c, but not python -m.

link|improve this answer
That works, thanks... – Chinmay Kanchi Mar 1 '10 at 14:30
1  
This is also the case in, for example, py2exe executables. – fmark Jul 13 '10 at 13:46
feedback

sys.ps1and sys.ps2 are only defined in interactive mode (http://docs.python.org/library/sys.html#sys.ps1).

link|improve this answer
Also works. Thanks. – Chinmay Kanchi Mar 1 '10 at 14:31
1  
Doesn't work in IPython. – Keith Aug 3 '11 at 13:13
feedback

From TFM: If no interface option is given, -i is implied, sys.argv[0] is an empty string ("") and the current directory will be added to the start of sys.path.

If the user invoked the interpreter with python and no arguments, as you mentioned, you could test this with if sys.argv[0] == ''. This also returns true if started with python -i, but according to the docs, they're functionally the same.

link|improve this answer
This works too. Guess there are a ton of ways to do this :) – Chinmay Kanchi Mar 1 '10 at 14:32
Uh oh. Direct violation of the Zen of Python, then :) – Tim Pietzcker Mar 1 '10 at 14:33
Heh... Though I think @echoback's version is the only obvious(ish) one. I didn't accept this simply because in C et al., it is theoretically possible that argv[0] is NULL or an empty string and I don't really feel like debugging any potential errors caused by that... – Chinmay Kanchi Mar 1 '10 at 14:59
This may be problematic for other interpreters, however. For example, when using IPython, sys.argv = ['/usr/bin/ipython'] – Keith Aug 3 '11 at 13:12
feedback
if sys.flags.interactive:
    #interactive
else:
    #not interactive 

http://docs.python.org/library/sys.html#sys.flags

link|improve this answer
feedback

Here's something that would work. Put the following code snippet in a file, and assign the path to that file to the PYTHONSTARTUP environment variable.

__pythonIsInteractive__ = None

And then you can use

if __name__=="__main__":
    #do stuff
elif '__pythonIsInteractive__' in globals():
    #do other stuff
else:
    exit()

http://docs.python.org/tutorial/interpreter.html#the-interactive-startup-file

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.