blob: 0ab766065d6e817b19bcfaf6ecc911a16b981117 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`pty` --- Pseudo-terminal utilities
2========================================
3
4.. module:: pty
Benjamin Petersona0dfa822009-11-13 02:25:08 +00005 :platform: Linux
6 :synopsis: Pseudo-Terminal Handling for Linux.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04007
Georg Brandl116aa622007-08-15 14:28:22 +00008.. moduleauthor:: Steen Lumholt
9.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
10
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040011**Source code:** :source:`Lib/pty.py`
12
13--------------
Georg Brandl116aa622007-08-15 14:28:22 +000014
15The :mod:`pty` module defines operations for handling the pseudo-terminal
16concept: starting another process and being able to write to and read from its
17controlling terminal programmatically.
18
Mark Dickinson934896d2009-02-21 20:59:32 +000019Because pseudo-terminal handling is highly platform dependent, there is code to
Benjamin Petersona0dfa822009-11-13 02:25:08 +000020do it only for Linux. (The Linux code is supposed to work on other platforms,
21but hasn't been tested yet.)
Georg Brandl116aa622007-08-15 14:28:22 +000022
23The :mod:`pty` module defines the following functions:
24
25
26.. function:: fork()
27
28 Fork. Connect the child's controlling terminal to a pseudo-terminal. Return
29 value is ``(pid, fd)``. Note that the child gets *pid* 0, and the *fd* is
30 *invalid*. The parent's return value is the *pid* of the child, and *fd* is a
31 file descriptor connected to the child's controlling terminal (and also to the
32 child's standard input and output).
33
34
35.. function:: openpty()
36
37 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
Benjamin Petersona0dfa822009-11-13 02:25:08 +000038 emulation code for generic Unix systems. Return a pair of file descriptors
39 ``(master, slave)``, for the master and the slave end, respectively.
Georg Brandl116aa622007-08-15 14:28:22 +000040
41
42.. function:: spawn(argv[, master_read[, stdin_read]])
43
44 Spawn a process, and connect its controlling terminal with the current
45 process's standard io. This is often used to baffle programs which insist on
46 reading from the controlling terminal.
47
48 The functions *master_read* and *stdin_read* should be functions which read from
Georg Brandl9afde1c2007-11-01 20:32:30 +000049 a file descriptor. The defaults try to read 1024 bytes each time they are
Georg Brandl116aa622007-08-15 14:28:22 +000050 called.
51
Gregory P. Smith0f21adf72012-09-29 12:41:03 -070052 .. versionchanged:: 3.4
53 :func:`spawn` now returns the status value from :func:`os.waitpid`
54 on the child process.
Georg Brandl4cf83f42010-12-30 17:22:33 +000055
56Example
57-------
58
59.. sectionauthor:: Steen Lumholt
60
61The following program acts like the Unix command :manpage:`script(1)`, using a
62pseudo-terminal to record all input and output of a terminal session in a
63"typescript". ::
64
Berker Peksagc2dd6802015-05-12 17:25:06 +030065 import argparse
66 import os
67 import pty
68 import sys
69 import time
Georg Brandl4cf83f42010-12-30 17:22:33 +000070
Berker Peksagc2dd6802015-05-12 17:25:06 +030071 parser = argparse.ArgumentParser()
72 parser.add_argument('-a', dest='append', action='store_true')
73 parser.add_argument('-p', dest='use_python', action='store_true')
74 parser.add_argument('filename', nargs='?', default='typescript')
75 options = parser.parse_args()
Georg Brandl4cf83f42010-12-30 17:22:33 +000076
Berker Peksagc2dd6802015-05-12 17:25:06 +030077 shell = sys.executable if options.use_python else os.environ.get('SHELL', 'sh')
78 filename = options.filename
79 mode = 'ab' if options.append else 'wb'
Georg Brandl4cf83f42010-12-30 17:22:33 +000080
Berker Peksagc2dd6802015-05-12 17:25:06 +030081 with open(filename, mode) as script:
82 def read(fd):
83 data = os.read(fd, 1024)
84 script.write(data)
85 return data
Georg Brandl4cf83f42010-12-30 17:22:33 +000086
Berker Peksagc2dd6802015-05-12 17:25:06 +030087 print('Script started, file is', filename)
88 script.write(('Script started on %s\n' % time.asctime()).encode())
Georg Brandl4cf83f42010-12-30 17:22:33 +000089
Berker Peksagc2dd6802015-05-12 17:25:06 +030090 pty.spawn(shell, read)
Georg Brandl4cf83f42010-12-30 17:22:33 +000091
Berker Peksagc2dd6802015-05-12 17:25:06 +030092 script.write(('Script done on %s\n' % time.asctime()).encode())
93 print('Script done, file is', filename)