blob: cd2a80a5aa49f0d8fb21f4383e4570ef03dbabfd [file] [log] [blame]
Skip Montanaro510ca1d2000-07-06 03:25:26 +00001\section{\module{readline} ---
Fred Drake3c62d9e2000-07-06 04:51:04 +00002 GNU readline interface}
Skip Montanaro510ca1d2000-07-06 03:25:26 +00003
4\declaremodule{builtin}{readline}
Fred Drake3c62d9e2000-07-06 04:51:04 +00005 \platform{Unix}
Skip Montanaro510ca1d2000-07-06 03:25:26 +00006\sectionauthor{Skip Montanaro}{skip@mojam.com}
Fred Drakef8ca7d82000-10-10 17:03:45 +00007\modulesynopsis{GNU readline support for Python.}
Skip Montanaro510ca1d2000-07-06 03:25:26 +00008
Skip Montanaro510ca1d2000-07-06 03:25:26 +00009
10The \module{readline} module defines a number of functions used either
Fred Drake3c62d9e2000-07-06 04:51:04 +000011directly or from the \refmodule{rlcompleter} module to facilitate
12completion and history file read and write from the Python
13interpreter.
Skip Montanaro510ca1d2000-07-06 03:25:26 +000014
15The \module{readline} module defines the following functions:
16
Fred Drake3c62d9e2000-07-06 04:51:04 +000017
Skip Montanaro0dc23102004-05-23 17:46:50 +000018\begin{funcdesc}{readline}{\optional{prompt}}
19Get a single line of input from the user.
20\end{funcdesc}
21
Skip Montanaro510ca1d2000-07-06 03:25:26 +000022\begin{funcdesc}{parse_and_bind}{string}
23Parse and execute single line of a readline init file.
24\end{funcdesc}
25
26\begin{funcdesc}{get_line_buffer}{}
27Return the current contents of the line buffer.
28\end{funcdesc}
29
30\begin{funcdesc}{insert_text}{string}
31Insert text into the command line.
32\end{funcdesc}
33
34\begin{funcdesc}{read_init_file}{\optional{filename}}
35Parse a readline initialization file.
36The default filename is the last filename used.
37\end{funcdesc}
38
39\begin{funcdesc}{read_history_file}{\optional{filename}}
40Load a readline history file.
Fred Drake3c62d9e2000-07-06 04:51:04 +000041The default filename is \file{\~{}/.history}.
Skip Montanaro510ca1d2000-07-06 03:25:26 +000042\end{funcdesc}
43
44\begin{funcdesc}{write_history_file}{\optional{filename}}
45Save a readline history file.
Fred Drake3c62d9e2000-07-06 04:51:04 +000046The default filename is \file{\~{}/.history}.
Skip Montanaro510ca1d2000-07-06 03:25:26 +000047\end{funcdesc}
48
Martin v. Löwise7a97962003-09-20 16:08:33 +000049\begin{funcdesc}{clear_history}{}
50Clear the current history. (Note: this function is not available if
51the installed version of GNU readline doesn't support it.)
52\versionadded{2.4}
53\end{funcdesc}
54
Skip Montanaro7cb15242000-07-19 16:56:26 +000055\begin{funcdesc}{get_history_length}{}
56Return the desired length of the history file. Negative values imply
57unlimited history file size.
58\end{funcdesc}
59
60\begin{funcdesc}{set_history_length}{length}
61Set the number of lines to save in the history file.
Fred Drake3fe9a982000-08-09 14:37:05 +000062\function{write_history_file()} uses this value to truncate the
63history file when saving. Negative values imply unlimited history
64file size.
Skip Montanaro7cb15242000-07-19 16:56:26 +000065\end{funcdesc}
66
Phillip J. Eby5068c872004-05-04 19:20:22 +000067\begin{funcdesc}{get_current_history_length}{}
68Return the number of lines currently in the history. (This is different
69from \function{get_history_length()}, which returns the maximum number of
70lines that will be written to a history file.) \versionadded{2.3}
71\end{funcdesc}
72
73\begin{funcdesc}{get_history_item}{index}
74Return the current contents of history item at \var{index}.
75\versionadded{2.3}
76\end{funcdesc}
77
78\begin{funcdesc}{redisplay}{}
79Change what's displayed on the screen to reflect the current contents
80of the line buffer. \versionadded{2.3}
81\end{funcdesc}
82
Martin v. Löwis0daad592001-09-30 21:09:59 +000083\begin{funcdesc}{set_startup_hook}{\optional{function}}
84Set or remove the startup_hook function. If \var{function} is specified,
85it will be used as the new startup_hook function; if omitted or
86\code{None}, any hook function already installed is removed. The
87startup_hook function is called with no arguments just
88before readline prints the first prompt.
89\end{funcdesc}
90
91\begin{funcdesc}{set_pre_input_hook}{\optional{function}}
92Set or remove the pre_input_hook function. If \var{function} is specified,
93it will be used as the new pre_input_hook function; if omitted or
94\code{None}, any hook function already installed is removed. The
95pre_input_hook function is called with no arguments after the first prompt
96has been printed and just before readline starts reading input characters.
97\end{funcdesc}
98
Skip Montanaro510ca1d2000-07-06 03:25:26 +000099\begin{funcdesc}{set_completer}{\optional{function}}
Fred Drake905dc552001-08-01 21:42:45 +0000100Set or remove the completer function. If \var{function} is specified,
101it will be used as the new completer function; if omitted or
102\code{None}, any completer function already installed is removed. The
103completer function is called as \code{\var{function}(\var{text},
104\var{state})}, for \var{state} in \code{0}, \code{1}, \code{2}, ...,
105until it returns a non-string value. It should return the next
106possible completion starting with \var{text}.
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000107\end{funcdesc}
108
Neal Norwitzb7d1d3c2003-02-21 18:57:05 +0000109\begin{funcdesc}{get_completer}{}
Michael W. Hudsonf5dd7532003-02-21 20:11:09 +0000110Get the completer function, or \code{None} if no completer function
111has been set. \versionadded{2.3}
Neal Norwitzb7d1d3c2003-02-21 18:57:05 +0000112\end{funcdesc}
113
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000114\begin{funcdesc}{get_begidx}{}
115Get the beginning index of the readline tab-completion scope.
116\end{funcdesc}
117
118\begin{funcdesc}{get_endidx}{}
119Get the ending index of the readline tab-completion scope.
120\end{funcdesc}
121
122\begin{funcdesc}{set_completer_delims}{string}
123Set the readline word delimiters for tab-completion.
124\end{funcdesc}
125
126\begin{funcdesc}{get_completer_delims}{}
127Get the readline word delimiters for tab-completion.
128\end{funcdesc}
129
Guido van Rossumb6c1d522001-10-19 01:18:43 +0000130\begin{funcdesc}{add_history}{line}
131Append a line to the history buffer, as if it was the last line typed.
132\end{funcdesc}
133
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000134
135\begin{seealso}
Fred Drake3c62d9e2000-07-06 04:51:04 +0000136 \seemodule{rlcompleter}{Completion of Python identifiers at the
137 interactive prompt.}
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000138\end{seealso}
Fred Drake3c62d9e2000-07-06 04:51:04 +0000139
140
141\subsection{Example \label{readline-example}}
142
143The following example demonstrates how to use the
144\module{readline} module's history reading and writing functions to
145automatically load and save a history file named \file{.pyhist} from
146the user's home directory. The code below would normally be executed
147automatically during interactive sessions from the user's
148\envvar{PYTHONSTARTUP} file.
149
150\begin{verbatim}
151import os
152histfile = os.path.join(os.environ["HOME"], ".pyhist")
153try:
154 readline.read_history_file(histfile)
155except IOError:
156 pass
157import atexit
158atexit.register(readline.write_history_file, histfile)
159del os, histfile
160\end{verbatim}
Skip Montanaro0dc23102004-05-23 17:46:50 +0000161