is there a way to find out from within a python program if it was started in a terminal or e.g. in a batch engine like sun grid engine?
the idea is to decide on printing some progress bars and other ascii-interactive stuff, or not.
thanks!
p.
|
is there a way to find out from within a python program if it was started in a terminal or e.g. in a batch engine like sun grid engine? the idea is to decide on printing some progress bars and other ascii-interactive stuff, or not. thanks! p. |
|||
|
The standard way is
|
||||
|
|
You can use |
|||||
|
|
I have found the following to work on both Linux and Windows, in both the normal Python interpreter and IPython (though I can't say about IronPython):
However, note that when using ipython, if the file is specified as a command-line argument it will run before the interpreter becomes interactive. See what I mean below:
HTH |
|||
|
|
printenvin a job and see which environment variables are set by Sun Grid Engine (such as the job number) which are not set during a typical interactive shell ? – Andre Holzner Aug 27 '11 at 9:06