Programmatically drive interactive terminal applications via PTY
Project description
ptydriver
Programmatically drive interactive terminal applications via PTY.
Overview
ptydriver provides a simple, reliable way to control interactive CLI applications (TUI apps, REPLs, shells, AI agents, etc.) by spawning them in a PTY and maintaining a virtual terminal screen.
Key Features:
- Drive any interactive CLI application programmatically
- Send keystrokes and control sequences
- Read terminal output with virtual screen tracking
- Manage multiple instances in parallel with ProcessPool
- No mocks - real process control via PTY
Installation
pip install ptydriver
Or with uv:
uv pip install ptydriver
Quick Start
Basic Usage
from ptydriver import PtyProcess, Keys
# Drive any interactive CLI
with PtyProcess(["python3"]) as proc:
proc.send("print('hello')")
proc.wait_for("hello")
print("Success!")
Interactive Application Control
from ptydriver import PtyProcess, Keys
# Control fzf
with PtyProcess(["bash", "--norc"]) as proc:
proc.wait_for("$")
# Launch fzf with some input
proc.send("echo -e 'apple\\nbanana\\ncherry' | fzf")
# Type to filter
proc.send_raw("an") # Filters to "banana"
# Navigate and select
proc.send_raw(Keys.DOWN)
proc.send_raw(Keys.ENTER)
proc.wait_for("banana")
Drive Multiple Instances
from ptydriver import ProcessPool
# Manage multiple processes
with ProcessPool() as pool:
# Spawn 3 instances
for i in range(3):
pool.add(["python3"], name=f"python-{i}")
# Wait for all to be ready
for proc in pool:
proc.wait_for(">>>")
# Send command to all
pool.broadcast("print('Hello from all!')")
# Check all have output
for proc in pool:
proc.wait_for("Hello from all!")
API Reference
PtyProcess
The main class for driving a single interactive process.
PtyProcess(
command: List[str], # Command and arguments
width: int = 120, # Terminal width
height: int = 40, # Terminal height
timeout: int = 5, # Default timeout for operations
env: Dict[str, str] = None, # Environment variables
cwd: str = None, # Working directory
)
Methods:
send(text, delay=0.15, press_enter=True)- Send text to processsend_raw(sequence, delay=0.15)- Send raw escape sequencessend_bytes(data, delay=0.15)- Send raw bytes directlyget_content()- Get current screen content as stringget_screen()- Get screen as list of linesget_cursor_position()- Get (x, y) cursor positionset_size(width, height)- Resize the terminal windowwait_for(pattern, timeout=None)- Wait for text or regex pattern to appearexpect_any(patterns, timeout=None)- Wait for any of the given patterns (returns index, match)expect_sequence(patterns, timeout=None)- Wait for a sequence of patternscontains(pattern)- Check if text or regex is on screenis_alive()- Check if process is runningcleanup()- Clean up process (called automatically in context manager)
Advanced Usage
Regex Support
wait_for and contains support compiled regex patterns:
import re
from ptydriver import PtyProcess
with PtyProcess(["bash"]) as proc:
# Wait for a prompt matching regex
proc.wait_for(re.compile(r"[\$#]"))
Multi-Pattern Expectations
Wait for one of multiple possibilities or a specific sequence:
# Expect any of the options
index, match = proc.expect_any(["Success", "Error", re.compile(r"Code: \d+")])
if index == 0:
print("Succeeded!")
# Expect a sequence of events
proc.expect_sequence([
"Initializing...",
re.compile(r"Loading data: \d+%"),
"Done"
])
ProcessPool
Manage multiple PtyProcess instances for parallel execution.
pool = ProcessPool()
proc = pool.add(["bash"], name="my-bash")
pool.broadcast("echo hello") # Send to all
pool.cleanup()
Keys
Common key sequences for terminal interaction.
from ptydriver import Keys
# Control characters
Keys.CTRL_C # Interrupt
Keys.CTRL_D # EOF
Keys.CTRL_L # Clear screen
# Arrow keys
Keys.UP, Keys.DOWN, Keys.LEFT, Keys.RIGHT
# Special keys
Keys.ENTER, Keys.TAB, Keys.ESCAPE, Keys.BACKSPACE
# Function keys
Keys.F1 through Keys.F12
# Navigation
Keys.HOME, Keys.END, Keys.PAGE_UP, Keys.PAGE_DOWN
# Helper methods
Keys.ctrl('c') # Generate Ctrl+C
Keys.alt('f') # Generate Alt+F
Keys.meta('x') # Generate Meta+X (same as alt)
Keys.repeat(Keys.DOWN, 5) # Repeat key 5 times
Use Cases
- Testing TUI applications: Automate testing of ncurses apps, vim, fzf, etc.
- Driving AI agents: Programmatically control CLI-based AI tools
- Shell automation: Script complex interactive shell sessions
- REPL interaction: Automate Python, Node.js, or other REPLs
- Parallel execution: Run multiple instances of interactive tools
Requirements
- Python 3.8+
- macOS or Linux
- ptyprocess
- pyte
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ptydriver-0.2.0.tar.gz.
File metadata
- Download URL: ptydriver-0.2.0.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3131ec0cbaa4aec14d9560a7bbaea97d5f11e00b5bec2b674d228209bf1b186
|
|
| MD5 |
e8efe7968faf8255a32fc73f4898bf08
|
|
| BLAKE2b-256 |
4e334b543172c45ee8a4039a822bffdca998efd7143e302b5d4c03201eba16d7
|
File details
Details for the file ptydriver-0.2.0-py3-none-any.whl.
File metadata
- Download URL: ptydriver-0.2.0-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0055c26442b90f427ad6d453dfb5abef79cecd6e232b0627504af2bce712426a
|
|
| MD5 |
de364a93be3db02d6e73dae8c8f2212b
|
|
| BLAKE2b-256 |
ed0c103ed337318a803813487989227f2f37234bcfd0af68c1360a59b7ef5134
|