blob: c98843de02cba31cf11b70693b018ec06faccda5 [file] [log] [blame]
Georg Brandl24420152008-05-26 16:32:26 +00001:mod:`http.server` --- HTTP servers
2===================================
3
4.. module:: http.server
5 :synopsis: HTTP server and request handlers.
6
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04007**Source code:** :source:`Lib/http/server.py`
Georg Brandl24420152008-05-26 16:32:26 +00008
9.. index::
10 pair: WWW; server
11 pair: HTTP; protocol
12 single: URL
13 single: httpd
14
Raymond Hettinger469271d2011-01-27 20:38:46 +000015--------------
16
Georg Brandl24420152008-05-26 16:32:26 +000017This module defines classes for implementing HTTP servers (Web servers).
18
19One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass.
20It creates and listens at the HTTP socket, dispatching the requests to a
21handler. Code to create and run the server looks like this::
22
23 def run(server_class=HTTPServer, handler_class=BaseHTTPRequestHandler):
24 server_address = ('', 8000)
25 httpd = server_class(server_address, handler_class)
26 httpd.serve_forever()
27
28
29.. class:: HTTPServer(server_address, RequestHandlerClass)
30
Serhiy Storchakabfdcd432013-10-13 23:09:14 +030031 This class builds on the :class:`~socketserver.TCPServer` class by storing
32 the server address as instance variables named :attr:`server_name` and
Georg Brandl24420152008-05-26 16:32:26 +000033 :attr:`server_port`. The server is accessible by the handler, typically
34 through the handler's :attr:`server` instance variable.
35
36
37The :class:`HTTPServer` must be given a *RequestHandlerClass* on instantiation,
38of which this module provides three different variants:
39
40.. class:: BaseHTTPRequestHandler(request, client_address, server)
41
42 This class is used to handle the HTTP requests that arrive at the server. By
43 itself, it cannot respond to any actual HTTP requests; it must be subclassed
44 to handle each request method (e.g. GET or POST).
45 :class:`BaseHTTPRequestHandler` provides a number of class and instance
46 variables, and methods for use by subclasses.
47
48 The handler will parse the request and the headers, then call a method
49 specific to the request type. The method name is constructed from the
50 request. For example, for the request method ``SPAM``, the :meth:`do_SPAM`
51 method will be called with no arguments. All of the relevant information is
52 stored in instance variables of the handler. Subclasses should not need to
53 override or extend the :meth:`__init__` method.
54
55 :class:`BaseHTTPRequestHandler` has the following instance variables:
56
57 .. attribute:: client_address
58
59 Contains a tuple of the form ``(host, port)`` referring to the client's
60 address.
61
Benjamin Peterson3e4f0552008-09-02 00:31:15 +000062 .. attribute:: server
63
64 Contains the server instance.
65
Benjamin Peterson70e28472015-02-17 21:11:10 -050066 .. attribute:: close_connection
67
68 Boolean that should be set before :meth:`handle_one_request` returns,
69 indicating if another request may be expected, or if the connection should
70 be shut down.
71
72 .. attribute:: requestline
73
74 Contains the string representation of the HTTP request line. The
75 terminating CRLF is stripped. This attribute should be set by
76 :meth:`handle_one_request`. If no valid request line was processed, it
77 should be set to the empty string.
Benjamin Peterson3e4f0552008-09-02 00:31:15 +000078
Georg Brandl24420152008-05-26 16:32:26 +000079 .. attribute:: command
80
81 Contains the command (request type). For example, ``'GET'``.
82
83 .. attribute:: path
84
85 Contains the request path.
86
87 .. attribute:: request_version
88
89 Contains the version string from the request. For example, ``'HTTP/1.0'``.
90
91 .. attribute:: headers
92
93 Holds an instance of the class specified by the :attr:`MessageClass` class
94 variable. This instance parses and manages the headers in the HTTP
Senthil Kumarancad2bf22014-04-16 13:56:19 -040095 request. The :func:`~http.client.parse_headers` function from
96 :mod:`http.client` is used to parse the headers and it requires that the
97 HTTP request provide a valid :rfc:`2822` style header.
98
Georg Brandl24420152008-05-26 16:32:26 +000099 .. attribute:: rfile
100
Martin Panter34eeed42016-06-29 10:12:22 +0000101 An :class:`io.BufferedIOBase` input stream, ready to read from
102 the start of the optional input data.
Georg Brandl24420152008-05-26 16:32:26 +0000103
104 .. attribute:: wfile
105
106 Contains the output stream for writing a response back to the
107 client. Proper adherence to the HTTP protocol must be used when writing to
jugglinmikea083c8e2017-05-24 14:25:50 -0400108 this stream in order to achieve successful interoperation with HTTP
109 clients.
Georg Brandl24420152008-05-26 16:32:26 +0000110
Martin Panter34eeed42016-06-29 10:12:22 +0000111 .. versionchanged:: 3.6
112 This is an :class:`io.BufferedIOBase` stream.
113
Berker Peksag02698282016-04-24 01:51:02 +0300114 :class:`BaseHTTPRequestHandler` has the following attributes:
Georg Brandl24420152008-05-26 16:32:26 +0000115
116 .. attribute:: server_version
117
118 Specifies the server software version. You may want to override this. The
119 format is multiple whitespace-separated strings, where each string is of
120 the form name[/version]. For example, ``'BaseHTTP/0.2'``.
121
122 .. attribute:: sys_version
123
124 Contains the Python system version, in a form usable by the
125 :attr:`version_string` method and the :attr:`server_version` class
126 variable. For example, ``'Python/1.4'``.
127
128 .. attribute:: error_message_format
129
Berker Peksag02698282016-04-24 01:51:02 +0300130 Specifies a format string that should be used by :meth:`send_error` method
131 for building an error response to the client. The string is filled by
132 default with variables from :attr:`responses` based on the status code
133 that passed to :meth:`send_error`.
Georg Brandl24420152008-05-26 16:32:26 +0000134
135 .. attribute:: error_content_type
136
137 Specifies the Content-Type HTTP header of error responses sent to the
138 client. The default value is ``'text/html'``.
139
140 .. attribute:: protocol_version
141
142 This specifies the HTTP protocol version used in responses. If set to
143 ``'HTTP/1.1'``, the server will permit HTTP persistent connections;
144 however, your server *must* then include an accurate ``Content-Length``
145 header (using :meth:`send_header`) in all of its responses to clients.
146 For backwards compatibility, the setting defaults to ``'HTTP/1.0'``.
147
148 .. attribute:: MessageClass
149
Georg Brandl83e9f4c2008-06-12 18:52:31 +0000150 Specifies an :class:`email.message.Message`\ -like class to parse HTTP
151 headers. Typically, this is not overridden, and it defaults to
152 :class:`http.client.HTTPMessage`.
Georg Brandl24420152008-05-26 16:32:26 +0000153
154 .. attribute:: responses
155
Berker Peksag02698282016-04-24 01:51:02 +0300156 This attribute contains a mapping of error code integers to two-element tuples
Georg Brandl24420152008-05-26 16:32:26 +0000157 containing a short and long message. For example, ``{code: (shortmessage,
158 longmessage)}``. The *shortmessage* is usually used as the *message* key in an
Berker Peksag02698282016-04-24 01:51:02 +0300159 error response, and *longmessage* as the *explain* key. It is used by
160 :meth:`send_response_only` and :meth:`send_error` methods.
Georg Brandl24420152008-05-26 16:32:26 +0000161
162 A :class:`BaseHTTPRequestHandler` instance has the following methods:
163
164 .. method:: handle()
165
166 Calls :meth:`handle_one_request` once (or, if persistent connections are
167 enabled, multiple times) to handle incoming HTTP requests. You should
168 never need to override it; instead, implement appropriate :meth:`do_\*`
169 methods.
170
171 .. method:: handle_one_request()
172
173 This method will parse and dispatch the request to the appropriate
174 :meth:`do_\*` method. You should never need to override it.
175
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000176 .. method:: handle_expect_100()
177
Martin Panter7462b6492015-11-02 03:37:02 +0000178 When a HTTP/1.1 compliant server receives an ``Expect: 100-continue``
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000179 request header it responds back with a ``100 Continue`` followed by ``200
180 OK`` headers.
181 This method can be overridden to raise an error if the server does not
182 want the client to continue. For e.g. server can chose to send ``417
183 Expectation Failed`` as a response header and ``return False``.
184
185 .. versionadded:: 3.2
186
Senthil Kumaran26886442013-03-15 07:53:21 -0700187 .. method:: send_error(code, message=None, explain=None)
Georg Brandl24420152008-05-26 16:32:26 +0000188
189 Sends and logs a complete error reply to the client. The numeric *code*
R David Murraya475a8d2014-01-03 13:03:00 -0500190 specifies the HTTP error code, with *message* as an optional, short, human
191 readable description of the error. The *explain* argument can be used to
192 provide more detailed information about the error; it will be formatted
Berker Peksag02698282016-04-24 01:51:02 +0300193 using the :attr:`error_message_format` attribute and emitted, after
R David Murraya475a8d2014-01-03 13:03:00 -0500194 a complete set of headers, as the response body. The :attr:`responses`
Berker Peksag02698282016-04-24 01:51:02 +0300195 attribute holds the default values for *message* and *explain* that
R David Murraya475a8d2014-01-03 13:03:00 -0500196 will be used if no value is provided; for unknown codes the default value
Martin Pantere42e1292016-06-08 08:29:13 +0000197 for both is the string ``???``. The body will be empty if the method is
198 HEAD or the response code is one of the following: ``1xx``,
199 ``204 No Content``, ``205 Reset Content``, ``304 Not Modified``.
Georg Brandl24420152008-05-26 16:32:26 +0000200
Senthil Kumaran52d27202012-10-10 23:16:21 -0700201 .. versionchanged:: 3.4
202 The error response includes a Content-Length header.
Ezio Melotti2acd2932013-03-16 22:23:30 +0200203 Added the *explain* argument.
Senthil Kumaran26886442013-03-15 07:53:21 -0700204
Georg Brandl036490d2009-05-17 13:00:36 +0000205 .. method:: send_response(code, message=None)
Georg Brandl24420152008-05-26 16:32:26 +0000206
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800207 Adds a response header to the headers buffer and logs the accepted
Senthil Kumarancc995282011-05-11 16:04:28 +0800208 request. The HTTP response line is written to the internal buffer,
209 followed by *Server* and *Date* headers. The values for these two headers
210 are picked up from the :meth:`version_string` and
211 :meth:`date_time_string` methods, respectively. If the server does not
212 intend to send any other headers using the :meth:`send_header` method,
Martin Panter7462b6492015-11-02 03:37:02 +0000213 then :meth:`send_response` should be followed by an :meth:`end_headers`
Ezio Melottie9c7d6c2011-05-12 01:10:57 +0300214 call.
Senthil Kumarancc995282011-05-11 16:04:28 +0800215
Ezio Melottie9c7d6c2011-05-12 01:10:57 +0300216 .. versionchanged:: 3.3
217 Headers are stored to an internal buffer and :meth:`end_headers`
218 needs to be called explicitly.
Senthil Kumarancc995282011-05-11 16:04:28 +0800219
Georg Brandl24420152008-05-26 16:32:26 +0000220 .. method:: send_header(keyword, value)
221
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800222 Adds the HTTP header to an internal buffer which will be written to the
Senthil Kumaran6ea17a82011-05-11 11:45:48 +0800223 output stream when either :meth:`end_headers` or :meth:`flush_headers` is
224 invoked. *keyword* should specify the header keyword, with *value*
225 specifying its value. Note that, after the send_header calls are done,
226 :meth:`end_headers` MUST BE called in order to complete the operation.
Senthil Kumarane4dad4f2010-11-21 14:36:14 +0000227
Georg Brandl61063cc2012-06-24 22:48:30 +0200228 .. versionchanged:: 3.2
229 Headers are stored in an internal buffer.
Senthil Kumarane4dad4f2010-11-21 14:36:14 +0000230
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000231 .. method:: send_response_only(code, message=None)
232
Senthil Kumaranb4760ef2015-06-14 17:35:37 -0700233 Sends the response header only, used for the purposes when ``100
Senthil Kumarane4dad4f2010-11-21 14:36:14 +0000234 Continue`` response is sent by the server to the client. The headers not
235 buffered and sent directly the output stream.If the *message* is not
236 specified, the HTTP message corresponding the response *code* is sent.
Senthil Kumaran0f476d42010-09-30 06:09:18 +0000237
238 .. versionadded:: 3.2
239
Georg Brandl24420152008-05-26 16:32:26 +0000240 .. method:: end_headers()
241
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800242 Adds a blank line
243 (indicating the end of the HTTP headers in the response)
Ezio Melottie9c7d6c2011-05-12 01:10:57 +0300244 to the headers buffer and calls :meth:`flush_headers()`.
Senthil Kumarane4dad4f2010-11-21 14:36:14 +0000245
Ezio Melottie9c7d6c2011-05-12 01:10:57 +0300246 .. versionchanged:: 3.2
247 The buffered headers are written to the output stream.
Georg Brandl24420152008-05-26 16:32:26 +0000248
Senthil Kumaranc7ae19b2011-05-09 23:25:02 +0800249 .. method:: flush_headers()
250
251 Finally send the headers to the output stream and flush the internal
252 headers buffer.
253
254 .. versionadded:: 3.3
255
Georg Brandl036490d2009-05-17 13:00:36 +0000256 .. method:: log_request(code='-', size='-')
Georg Brandl24420152008-05-26 16:32:26 +0000257
258 Logs an accepted (successful) request. *code* should specify the numeric
259 HTTP code associated with the response. If a size of the response is
260 available, then it should be passed as the *size* parameter.
261
262 .. method:: log_error(...)
263
264 Logs an error when a request cannot be fulfilled. By default, it passes
265 the message to :meth:`log_message`, so it takes the same arguments
266 (*format* and additional values).
267
268
269 .. method:: log_message(format, ...)
270
271 Logs an arbitrary message to ``sys.stderr``. This is typically overridden
272 to create custom error logging mechanisms. The *format* argument is a
273 standard printf-style format string, where the additional arguments to
274 :meth:`log_message` are applied as inputs to the formatting. The client
Senthil Kumarandb727b42012-04-29 13:41:03 +0800275 ip address and current date and time are prefixed to every message logged.
Georg Brandl24420152008-05-26 16:32:26 +0000276
277 .. method:: version_string()
278
279 Returns the server software's version string. This is a combination of the
Berker Peksag02698282016-04-24 01:51:02 +0300280 :attr:`server_version` and :attr:`sys_version` attributes.
Georg Brandl24420152008-05-26 16:32:26 +0000281
Georg Brandl036490d2009-05-17 13:00:36 +0000282 .. method:: date_time_string(timestamp=None)
Georg Brandl24420152008-05-26 16:32:26 +0000283
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300284 Returns the date and time given by *timestamp* (which must be ``None`` or in
Georg Brandl036490d2009-05-17 13:00:36 +0000285 the format returned by :func:`time.time`), formatted for a message
286 header. If *timestamp* is omitted, it uses the current date and time.
Georg Brandl24420152008-05-26 16:32:26 +0000287
288 The result looks like ``'Sun, 06 Nov 1994 08:49:37 GMT'``.
289
290 .. method:: log_date_time_string()
291
292 Returns the current date and time, formatted for logging.
293
294 .. method:: address_string()
295
Senthil Kumaran1aacba42012-04-29 12:51:54 +0800296 Returns the client address.
297
298 .. versionchanged:: 3.3
299 Previously, a name lookup was performed. To avoid name resolution
300 delays, it now always returns the IP address.
Georg Brandl24420152008-05-26 16:32:26 +0000301
302
Stéphane Wirtela17a2f52017-05-24 09:29:06 +0200303.. class:: SimpleHTTPRequestHandler(request, client_address, server, directory=None)
Georg Brandl24420152008-05-26 16:32:26 +0000304
305 This class serves files from the current directory and below, directly
306 mapping the directory structure to HTTP requests.
307
308 A lot of the work, such as parsing the request, is done by the base class
309 :class:`BaseHTTPRequestHandler`. This class implements the :func:`do_GET`
310 and :func:`do_HEAD` functions.
311
312 The following are defined as class-level attributes of
313 :class:`SimpleHTTPRequestHandler`:
314
315 .. attribute:: server_version
316
317 This will be ``"SimpleHTTP/" + __version__``, where ``__version__`` is
318 defined at the module level.
319
320 .. attribute:: extensions_map
321
322 A dictionary mapping suffixes into MIME types. The default is
323 signified by an empty string, and is considered to be
324 ``application/octet-stream``. The mapping is used case-insensitively,
325 and so should contain only lower-cased keys.
326
Stéphane Wirtela17a2f52017-05-24 09:29:06 +0200327 .. attribute:: directory
328
329 If not specified, the directory to serve is the current working directory.
330
Georg Brandl24420152008-05-26 16:32:26 +0000331 The :class:`SimpleHTTPRequestHandler` class defines the following methods:
332
333 .. method:: do_HEAD()
334
335 This method serves the ``'HEAD'`` request type: it sends the headers it
336 would send for the equivalent ``GET`` request. See the :meth:`do_GET`
337 method for a more complete explanation of the possible headers.
338
339 .. method:: do_GET()
340
341 The request is mapped to a local file by interpreting the request as a
342 path relative to the current working directory.
343
344 If the request was mapped to a directory, the directory is checked for a
345 file named ``index.html`` or ``index.htm`` (in that order). If found, the
346 file's contents are returned; otherwise a directory listing is generated
347 by calling the :meth:`list_directory` method. This method uses
348 :func:`os.listdir` to scan the directory, and returns a ``404`` error
Serhiy Storchakabfdcd432013-10-13 23:09:14 +0300349 response if the :func:`~os.listdir` fails.
Georg Brandl24420152008-05-26 16:32:26 +0000350
Pierre Quentel351adda2017-04-02 12:26:12 +0200351 If the request was mapped to a file, it is opened. Any :exc:`OSError`
352 exception in opening the requested file is mapped to a ``404``,
353 ``'File not found'`` error. If there was a ``'If-Modified-Since'``
354 header in the request, and the file was not modified after this time,
355 a ``304``, ``'Not Modified'`` response is sent. Otherwise, the content
Georg Brandl24420152008-05-26 16:32:26 +0000356 type is guessed by calling the :meth:`guess_type` method, which in turn
Pierre Quentel351adda2017-04-02 12:26:12 +0200357 uses the *extensions_map* variable, and the file contents are returned.
Georg Brandl24420152008-05-26 16:32:26 +0000358
359 A ``'Content-type:'`` header with the guessed content type is output,
360 followed by a ``'Content-Length:'`` header with the file's size and a
361 ``'Last-Modified:'`` header with the file's modification time.
362
363 Then follows a blank line signifying the end of the headers, and then the
364 contents of the file are output. If the file's MIME type starts with
365 ``text/`` the file is opened in text mode; otherwise binary mode is used.
366
Senthil Kumaran97db43b2010-06-16 16:41:11 +0000367 For example usage, see the implementation of the :func:`test` function
368 invocation in the :mod:`http.server` module.
Georg Brandl24420152008-05-26 16:32:26 +0000369
Pierre Quentel351adda2017-04-02 12:26:12 +0200370 .. versionchanged:: 3.7
371 Support of the ``'If-Modified-Since'`` header.
Senthil Kumaran97db43b2010-06-16 16:41:11 +0000372
Georg Brandl8971f742010-07-02 07:41:51 +0000373The :class:`SimpleHTTPRequestHandler` class can be used in the following
374manner in order to create a very basic webserver serving files relative to
Larry Hastings3732ed22014-03-15 21:13:56 -0700375the current directory::
Senthil Kumaran97db43b2010-06-16 16:41:11 +0000376
Georg Brandl8971f742010-07-02 07:41:51 +0000377 import http.server
378 import socketserver
Senthil Kumaran97db43b2010-06-16 16:41:11 +0000379
Georg Brandl8971f742010-07-02 07:41:51 +0000380 PORT = 8000
Senthil Kumaran97db43b2010-06-16 16:41:11 +0000381
Georg Brandl8971f742010-07-02 07:41:51 +0000382 Handler = http.server.SimpleHTTPRequestHandler
Senthil Kumaran97db43b2010-06-16 16:41:11 +0000383
Martin Panter0cab9c12016-04-13 00:36:52 +0000384 with socketserver.TCPServer(("", PORT), Handler) as httpd:
385 print("serving at port", PORT)
386 httpd.serve_forever()
Georg Brandl8971f742010-07-02 07:41:51 +0000387
Larry Hastings3732ed22014-03-15 21:13:56 -0700388.. _http-server-cli:
389
Georg Brandlf68798b2010-07-03 10:22:10 +0000390:mod:`http.server` can also be invoked directly using the :option:`-m`
R David Murraye7bade52012-04-11 20:13:25 -0400391switch of the interpreter with a ``port number`` argument. Similar to
Larry Hastings3732ed22014-03-15 21:13:56 -0700392the previous example, this serves files relative to the current directory::
Senthil Kumaran97db43b2010-06-16 16:41:11 +0000393
394 python -m http.server 8000
Georg Brandl24420152008-05-26 16:32:26 +0000395
Larry Hastings3732ed22014-03-15 21:13:56 -0700396By default, server binds itself to all interfaces. The option ``-b/--bind``
397specifies a specific address to which it should bind. For example, the
398following command causes the server to bind to localhost only::
Senthil Kumarandefe7f42013-09-15 09:37:27 -0700399
400 python -m http.server 8000 --bind 127.0.0.1
401
402.. versionadded:: 3.4
403 ``--bind`` argument was introduced.
404
Stéphane Wirtela17a2f52017-05-24 09:29:06 +0200405By default, server uses the current directory. The option ``-d/--directory``
406specifies a directory to which it should serve the files. For example,
407the following command uses a specific directory::
408
409 python -m http.server --directory /tmp/
410
411.. versionadded:: 3.7
412 ``--directory`` specify alternate directory
Georg Brandl8971f742010-07-02 07:41:51 +0000413
Georg Brandl24420152008-05-26 16:32:26 +0000414.. class:: CGIHTTPRequestHandler(request, client_address, server)
415
416 This class is used to serve either files or output of CGI scripts from the
417 current directory and below. Note that mapping HTTP hierarchic structure to
418 local directory structure is exactly as in :class:`SimpleHTTPRequestHandler`.
419
420 .. note::
421
422 CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute
423 redirects (HTTP code 302), because code 200 (script output follows) is
424 sent prior to execution of the CGI script. This pre-empts the status
425 code.
426
427 The class will however, run the CGI script, instead of serving it as a file,
428 if it guesses it to be a CGI script. Only directory-based CGI are used ---
429 the other common server configuration is to treat special extensions as
430 denoting CGI scripts.
431
432 The :func:`do_GET` and :func:`do_HEAD` functions are modified to run CGI scripts
433 and serve the output, instead of serving files, if the request leads to
434 somewhere below the ``cgi_directories`` path.
435
436 The :class:`CGIHTTPRequestHandler` defines the following data member:
437
438 .. attribute:: cgi_directories
439
440 This defaults to ``['/cgi-bin', '/htbin']`` and describes directories to
441 treat as containing CGI scripts.
442
443 The :class:`CGIHTTPRequestHandler` defines the following method:
444
445 .. method:: do_POST()
446
447 This method serves the ``'POST'`` request type, only allowed for CGI
448 scripts. Error 501, "Can only POST to CGI scripts", is output when trying
449 to POST to a non-CGI url.
450
451 Note that CGI scripts will be run with UID of user nobody, for security
452 reasons. Problems with the CGI script will be translated to error 403.
Senthil Kumaran1251faf2012-06-03 16:15:54 +0800453
454:class:`CGIHTTPRequestHandler` can be enabled in the command line by passing
Larry Hastings3732ed22014-03-15 21:13:56 -0700455the ``--cgi`` option::
Senthil Kumaran1251faf2012-06-03 16:15:54 +0800456
457 python -m http.server --cgi 8000