Trying to differentiate if stdout is going to pipe or process substitution.
my_python_script.py
#!/usr/bin/python3.6
if sys.__stdin__.isatty():
print("__stdin__ is TTY")
else:
print("__stdin__ is not TTY")
if sys.__stdout__.isatty():
print("__stdout__ is TTY")
else:
print("__stdout__ is not TTY")
if sys.__stderr__.isatty():
print("__stderr__ is TTY")
else:
print("__stderr__ is not TTY")
if sys.stdin.isatty():
print("stdin is TTY")
else:
print("stdin is not TTY")
if sys.stdout.isatty():
print("stdout is TTY")
else:
print("stdout is not TTY")
if sys.stderr.isatty():
print("stderr is TTY")
else:
print("stderr is not TTY")
The output below is identical if pipe or process substitution.
> my_python_script.py | cat
__stdin__ is TTY
__stdout__ is not TTY
__stderr__ is TTY
stdin is TTY
stdout is not TTY
stderr is TTY
> cat <(my_python_script.py)
__stdin__ is TTY
__stdout__ is not TTY
__stderr__ is TTY
stdin is TTY
stdout is not TTY
stderr is TTY
Is there a way to differentiate between output to a pipe vs. process substitution inside a python script?
Thank you