File: enforce-tty-input-output.py

package info (click to toggle)
prompt-toolkit 3.0.51-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,232 kB
  • sloc: python: 30,894; makefile: 151; sh: 6
file content (14 lines) | stat: -rwxr-xr-x 418 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
"""
This will display a prompt that will always use the terminal for input and
output, even if sys.stdin/stdout are connected to pipes.

For testing, run as:
    cat /dev/null | python ./enforce-tty-input-output.py > /dev/null
"""

from prompt_toolkit.application import create_app_session_from_tty
from prompt_toolkit.shortcuts import prompt

with create_app_session_from_tty():
    prompt(">")