Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 1 | \section{Standard Module \module{ftplib}} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 2 | \declaremodule{standard}{ftplib} |
| 3 | |
| 4 | \modulesynopsis{FTP protocol client (requires sockets).} |
| 5 | |
Fred Drake | 15bac5d | 1998-01-07 13:13:42 +0000 | [diff] [blame] | 6 | \indexii{FTP}{protocol} |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 8 | |
Fred Drake | 4f31694 | 1998-04-27 14:54:06 +0000 | [diff] [blame] | 9 | This module defines the class \class{FTP} and a few related items. |
| 10 | The \class{FTP} class implements the client side of the FTP protocol. |
| 11 | You can use this to write Python programs that perform a variety of |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 12 | automated FTP jobs, such as mirroring other ftp servers. It is also |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 13 | used by the module \module{urllib} to handle URLs that use FTP. For |
Fred Drake | 4f31694 | 1998-04-27 14:54:06 +0000 | [diff] [blame] | 14 | more information on FTP (File Transfer Protocol), see Internet |
| 15 | \rfc{959}. |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 16 | |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 17 | Here's a sample session using the \module{ftplib} module: |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 18 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 19 | \begin{verbatim} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 20 | >>> from ftplib import FTP |
| 21 | >>> ftp = FTP('ftp.cwi.nl') # connect to host, default port |
Guido van Rossum | 96628a9 | 1995-04-10 11:34:00 +0000 | [diff] [blame] | 22 | >>> ftp.login() # user anonymous, passwd user@hostname |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 23 | >>> ftp.retrlines('LIST') # list directory contents |
| 24 | total 24418 |
| 25 | drwxrwsr-x 5 ftp-usr pdmaint 1536 Mar 20 09:48 . |
| 26 | dr-xr-srwt 105 ftp-usr pdmaint 1536 Mar 21 14:32 .. |
| 27 | -rw-r--r-- 1 ftp-usr pdmaint 5305 Mar 20 09:48 INDEX |
| 28 | . |
| 29 | . |
| 30 | . |
| 31 | >>> ftp.quit() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 32 | \end{verbatim} |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 34 | The module defines the following items: |
| 35 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 36 | \begin{classdesc}{FTP}{\optional{host\optional{, user\optional{, |
| 37 | passwd\optional{, acct}}}}} |
Fred Drake | 4f31694 | 1998-04-27 14:54:06 +0000 | [diff] [blame] | 38 | Return a new instance of the \class{FTP} class. When |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 39 | \var{host} is given, the method call \code{connect(\var{host})} is |
| 40 | made. When \var{user} is given, additionally the method call |
| 41 | \code{login(\var{user}, \var{passwd}, \var{acct})} is made (where |
| 42 | \var{passwd} and \var{acct} default to the empty string when not given). |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 43 | \end{classdesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 44 | |
| 45 | \begin{datadesc}{all_errors} |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 46 | The set of all exceptions (as a tuple) that methods of \class{FTP} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 47 | instances may raise as a result of problems with the FTP connection |
| 48 | (as opposed to programming errors made by the caller). This set |
| 49 | includes the four exceptions listed below as well as |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 50 | \exception{socket.error} and \exception{IOError}. |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 51 | \end{datadesc} |
| 52 | |
| 53 | \begin{excdesc}{error_reply} |
| 54 | Exception raised when an unexpected reply is received from the server. |
| 55 | \end{excdesc} |
| 56 | |
| 57 | \begin{excdesc}{error_temp} |
| 58 | Exception raised when an error code in the range 400--499 is received. |
| 59 | \end{excdesc} |
| 60 | |
| 61 | \begin{excdesc}{error_perm} |
| 62 | Exception raised when an error code in the range 500--599 is received. |
| 63 | \end{excdesc} |
| 64 | |
| 65 | \begin{excdesc}{error_proto} |
| 66 | Exception raised when a reply is received from the server that does |
| 67 | not begin with a digit in the range 1--5. |
| 68 | \end{excdesc} |
| 69 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 70 | |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 71 | \subsection{FTP Objects} |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 72 | \label{ftp-objects} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 73 | |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 74 | \class{FTP} instances have the following methods: |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 75 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 76 | \begin{methoddesc}{set_debuglevel}{level} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 77 | Set the instance's debugging level. This controls the amount of |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 78 | debugging output printed. The default, \code{0}, produces no |
| 79 | debugging output. A value of \code{1} produces a moderate amount of |
| 80 | debugging output, generally a single line per request. A value of |
| 81 | \code{2} or higher produces the maximum amount of debugging output, |
| 82 | logging each line sent and received on the control connection. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 83 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 84 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 85 | \begin{methoddesc}{connect}{host\optional{, port}} |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 86 | Connect to the given host and port. The default port number is \code{21}, as |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 87 | specified by the FTP protocol specification. It is rarely needed to |
| 88 | specify a different port number. This function should be called only |
| 89 | once for each instance; it should not be called at all if a host was |
| 90 | given when the instance was created. All other methods can only be |
| 91 | used after a connection has been made. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 92 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 93 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 94 | \begin{methoddesc}{getwelcome}{} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 95 | Return the welcome message sent by the server in reply to the initial |
| 96 | connection. (This message sometimes contains disclaimers or help |
| 97 | information that may be relevant to the user.) |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 98 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 99 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 100 | \begin{methoddesc}{login}{\optional{user\optional{, passwd\optional{, acct}}}} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 101 | Log in as the given \var{user}. The \var{passwd} and \var{acct} |
| 102 | parameters are optional and default to the empty string. If no |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 103 | \var{user} is specified, it defaults to \code{'anonymous'}. If |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 104 | \var{user} is \code{anonymous}, the default \var{passwd} is |
| 105 | \samp{\var{realuser}@\var{host}} where \var{realuser} is the real user |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 106 | name (glanced from the \envvar{LOGNAME} or \envvar{USER} environment |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 107 | variable) and \var{host} is the hostname as returned by |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 108 | \function{socket.gethostname()}. This function should be called only |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 109 | once for each instance, after a connection has been established; it |
| 110 | should not be called at all if a host and user were given when the |
| 111 | instance was created. Most FTP commands are only allowed after the |
| 112 | client has logged in. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 113 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 114 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 115 | \begin{methoddesc}{abort}{} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 116 | Abort a file transfer that is in progress. Using this does not always |
| 117 | work, but it's worth a try. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 118 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 119 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 120 | \begin{methoddesc}{sendcmd}{command} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 121 | Send a simple command string to the server and return the response |
| 122 | string. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 123 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 124 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 125 | \begin{methoddesc}{voidcmd}{command} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 126 | Send a simple command string to the server and handle the response. |
| 127 | Return nothing if a response code in the range 200--299 is received. |
| 128 | Raise an exception otherwise. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 129 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 130 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 131 | \begin{methoddesc}{retrbinary}{command, callback\optional{, maxblocksize}} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 132 | Retrieve a file in binary transfer mode. \var{command} should be an |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 133 | appropriate \samp{RETR} command, i.e.\ \code{'RETR \var{filename}'}. |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 134 | The \var{callback} function is called for each block of data received, |
| 135 | with a single string argument giving the data block. |
Guido van Rossum | ab76af3 | 1997-12-03 19:34:14 +0000 | [diff] [blame] | 136 | The optional \var{maxblocksize} argument specifies the maximum chunk size to |
| 137 | read on the low-level socket object created to do the actual transfer |
| 138 | (which will also be the largest size of the data blocks passed to |
| 139 | \var{callback}). A reasonable default is chosen. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 140 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 141 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 142 | \begin{methoddesc}{retrlines}{command\optional{, callback}} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 143 | Retrieve a file or directory listing in \ASCII{} transfer mode. |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 144 | \var{command} should be an appropriate \samp{RETR} command (see |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 145 | \method{retrbinary()} or a \samp{LIST} command (usually just the string |
| 146 | \code{'LIST'}). The \var{callback} function is called for each line, |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 147 | with the trailing CRLF stripped. The default \var{callback} prints |
| 148 | the line to \code{sys.stdout}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 149 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 150 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 151 | \begin{methoddesc}{storbinary}{command, file, blocksize} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 152 | Store a file in binary transfer mode. \var{command} should be an |
| 153 | appropriate \samp{STOR} command, i.e.\ \code{"STOR \var{filename}"}. |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 154 | \var{file} is an open file object which is read until \EOF{} using its |
| 155 | \method{read()} method in blocks of size \var{blocksize} to provide the |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 156 | data to be stored. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 157 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 158 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 159 | \begin{methoddesc}{storlines}{command, file} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 160 | Store a file in \ASCII{} transfer mode. \var{command} should be an |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 161 | appropriate \samp{STOR} command (see \method{storbinary()}). Lines are |
| 162 | read until \EOF{} from the open file object \var{file} using its |
| 163 | \method{readline()} method to privide the data to be stored. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 164 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 165 | |
Fred Drake | 4f31694 | 1998-04-27 14:54:06 +0000 | [diff] [blame] | 166 | \begin{methoddesc}{transfercmd}{cmd} |
| 167 | Initiate a transfer over the data connection. If the transfer is |
| 168 | active, send a \samp{PORT} command and the transfer command specified |
| 169 | by \var{cmd}, and accept the connection. If the server is passive, |
| 170 | send a \samp{PASV} command, connect to it, and start the transfer |
| 171 | command. Either way, return the socket for the connection. |
| 172 | \end{methoddesc} |
| 173 | |
| 174 | \begin{methoddesc}{ntransfercmd}{cmd} |
| 175 | Like \method{transfercmd()}, but returns a tuple of the data |
| 176 | connection and the expected size of the data. If the expected size |
| 177 | could not be computed, \code{None} will be returned as the expected |
| 178 | size. |
| 179 | \end{methoddesc} |
| 180 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 181 | \begin{methoddesc}{nlst}{argument\optional{, \ldots}} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 182 | Return a list of files as returned by the \samp{NLST} command. The |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 183 | optional \var{argument} is a directory to list (default is the current |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 184 | server directory). Multiple arguments can be used to pass |
| 185 | non-standard options to the \samp{NLST} command. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 186 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 187 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 188 | \begin{methoddesc}{dir}{argument\optional{, \ldots}} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 189 | Return a directory listing as returned by the \samp{LIST} command, as |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 190 | a list of lines. The optional \var{argument} is a directory to list |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 191 | (default is the current server directory). Multiple arguments can be |
| 192 | used to pass non-standard options to the \samp{LIST} command. If the |
| 193 | last argument is a function, it is used as a \var{callback} function |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 194 | as for \method{retrlines()}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 195 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 196 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 197 | \begin{methoddesc}{rename}{fromname, toname} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 198 | Rename file \var{fromname} on the server to \var{toname}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 199 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 200 | |
Fred Drake | 4f31694 | 1998-04-27 14:54:06 +0000 | [diff] [blame] | 201 | \begin{methoddesc}{delete}{filename} |
| 202 | Remove the file named \var{filename} from the server. If successful, |
| 203 | returns the text of the response, otherwise raises |
| 204 | \exception{error_perm} on permission errors or \exception{error_reply} |
| 205 | on other errors. |
| 206 | \end{methoddesc} |
| 207 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 208 | \begin{methoddesc}{cwd}{pathname} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 209 | Set the current directory on the server. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 210 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 211 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 212 | \begin{methoddesc}{mkd}{pathname} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 213 | Create a new directory on the server. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 214 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 215 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 216 | \begin{methoddesc}{pwd}{} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 217 | Return the pathname of the current directory on the server. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 218 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 219 | |
Fred Drake | 4f31694 | 1998-04-27 14:54:06 +0000 | [diff] [blame] | 220 | \begin{methoddesc}{rmd}{dirname} |
| 221 | Remove the directory named \var{dirname} on the server. |
| 222 | \end{methoddesc} |
| 223 | |
| 224 | \begin{methoddesc}{size}{filename} |
| 225 | Request the size of the file named \var{filename} on the server. On |
| 226 | success, the size of the file is returned as an integer, otherwise |
| 227 | \code{None} is returned. Note that the \samp{SIZE} command is not |
| 228 | standardized, but is supported by many common server implementations. |
| 229 | \end{methoddesc} |
| 230 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 231 | \begin{methoddesc}{quit}{} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 232 | Send a \samp{QUIT} command to the server and close the connection. |
| 233 | This is the ``polite'' way to close a connection, but it may raise an |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 234 | exception of the server reponds with an error to the \samp{QUIT} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 235 | command. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 236 | \end{methoddesc} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 237 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 238 | \begin{methoddesc}{close}{} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 239 | Close the connection unilaterally. This should not be applied to an |
| 240 | already closed connection (e.g.\ after a successful call to |
Fred Drake | 6a1eefe | 1998-03-12 06:04:53 +0000 | [diff] [blame] | 241 | \method{quit()}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 242 | \end{methoddesc} |