Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1 | :mod:`http.server` --- HTTP servers |
| 2 | =================================== |
| 3 | |
| 4 | .. module:: http.server |
| 5 | :synopsis: HTTP server and request handlers. |
| 6 | |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 7 | **Source code:** :source:`Lib/http/server.py` |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 8 | |
| 9 | .. index:: |
| 10 | pair: WWW; server |
| 11 | pair: HTTP; protocol |
| 12 | single: URL |
| 13 | single: httpd |
| 14 | |
Raymond Hettinger | 469271d | 2011-01-27 20:38:46 +0000 | [diff] [blame] | 15 | -------------- |
| 16 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 17 | This module defines classes for implementing HTTP servers (Web servers). |
| 18 | |
Felipe Rodrigues | 1d26c72 | 2018-10-10 23:43:40 -0300 | [diff] [blame] | 19 | |
Senthil Kumaran | eeab510 | 2018-10-20 11:32:07 -0700 | [diff] [blame] | 20 | .. warning:: |
| 21 | |
Senthil Kumaran | 25a525b | 2018-10-26 06:43:37 -0700 | [diff] [blame] | 22 | :mod:`http.server` is not recommended for production. It only implements |
| 23 | basic security checks. |
Felipe Rodrigues | 1d26c72 | 2018-10-10 23:43:40 -0300 | [diff] [blame] | 24 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 25 | One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass. |
| 26 | It creates and listens at the HTTP socket, dispatching the requests to a |
| 27 | handler. Code to create and run the server looks like this:: |
| 28 | |
| 29 | def run(server_class=HTTPServer, handler_class=BaseHTTPRequestHandler): |
| 30 | server_address = ('', 8000) |
| 31 | httpd = server_class(server_address, handler_class) |
| 32 | httpd.serve_forever() |
| 33 | |
| 34 | |
| 35 | .. class:: HTTPServer(server_address, RequestHandlerClass) |
| 36 | |
Serhiy Storchaka | bfdcd43 | 2013-10-13 23:09:14 +0300 | [diff] [blame] | 37 | This class builds on the :class:`~socketserver.TCPServer` class by storing |
| 38 | the server address as instance variables named :attr:`server_name` and |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 39 | :attr:`server_port`. The server is accessible by the handler, typically |
| 40 | through the handler's :attr:`server` instance variable. |
| 41 | |
Géry Ogam | 1cee216 | 2018-05-29 22:10:30 +0200 | [diff] [blame] | 42 | .. class:: ThreadingHTTPServer(server_address, RequestHandlerClass) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 43 | |
Julien Palard | 8bcfa02 | 2018-03-23 17:40:33 +0100 | [diff] [blame] | 44 | This class is identical to HTTPServer but uses threads to handle |
Alex Gaynor | 1d87c7b | 2018-04-06 08:26:49 -0400 | [diff] [blame] | 45 | requests by using the :class:`~socketserver.ThreadingMixIn`. This |
Julien Palard | 79c3bab | 2018-03-28 23:24:58 +0200 | [diff] [blame] | 46 | is useful to handle web browsers pre-opening sockets, on which |
| 47 | :class:`HTTPServer` would wait indefinitely. |
| 48 | |
| 49 | .. versionadded:: 3.7 |
| 50 | |
Julien Palard | 8bcfa02 | 2018-03-23 17:40:33 +0100 | [diff] [blame] | 51 | |
Géry Ogam | 1cee216 | 2018-05-29 22:10:30 +0200 | [diff] [blame] | 52 | The :class:`HTTPServer` and :class:`ThreadingHTTPServer` must be given |
Julien Palard | 8bcfa02 | 2018-03-23 17:40:33 +0100 | [diff] [blame] | 53 | a *RequestHandlerClass* on instantiation, of which this module |
| 54 | provides three different variants: |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 55 | |
| 56 | .. class:: BaseHTTPRequestHandler(request, client_address, server) |
| 57 | |
| 58 | This class is used to handle the HTTP requests that arrive at the server. By |
| 59 | itself, it cannot respond to any actual HTTP requests; it must be subclassed |
| 60 | to handle each request method (e.g. GET or POST). |
| 61 | :class:`BaseHTTPRequestHandler` provides a number of class and instance |
| 62 | variables, and methods for use by subclasses. |
| 63 | |
| 64 | The handler will parse the request and the headers, then call a method |
| 65 | specific to the request type. The method name is constructed from the |
| 66 | request. For example, for the request method ``SPAM``, the :meth:`do_SPAM` |
| 67 | method will be called with no arguments. All of the relevant information is |
| 68 | stored in instance variables of the handler. Subclasses should not need to |
| 69 | override or extend the :meth:`__init__` method. |
| 70 | |
| 71 | :class:`BaseHTTPRequestHandler` has the following instance variables: |
| 72 | |
| 73 | .. attribute:: client_address |
| 74 | |
| 75 | Contains a tuple of the form ``(host, port)`` referring to the client's |
| 76 | address. |
| 77 | |
Benjamin Peterson | 3e4f055 | 2008-09-02 00:31:15 +0000 | [diff] [blame] | 78 | .. attribute:: server |
| 79 | |
| 80 | Contains the server instance. |
| 81 | |
Benjamin Peterson | 70e2847 | 2015-02-17 21:11:10 -0500 | [diff] [blame] | 82 | .. attribute:: close_connection |
| 83 | |
| 84 | Boolean that should be set before :meth:`handle_one_request` returns, |
| 85 | indicating if another request may be expected, or if the connection should |
| 86 | be shut down. |
| 87 | |
| 88 | .. attribute:: requestline |
| 89 | |
| 90 | Contains the string representation of the HTTP request line. The |
| 91 | terminating CRLF is stripped. This attribute should be set by |
| 92 | :meth:`handle_one_request`. If no valid request line was processed, it |
| 93 | should be set to the empty string. |
Benjamin Peterson | 3e4f055 | 2008-09-02 00:31:15 +0000 | [diff] [blame] | 94 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 95 | .. attribute:: command |
| 96 | |
| 97 | Contains the command (request type). For example, ``'GET'``. |
| 98 | |
| 99 | .. attribute:: path |
| 100 | |
| 101 | Contains the request path. |
| 102 | |
| 103 | .. attribute:: request_version |
| 104 | |
| 105 | Contains the version string from the request. For example, ``'HTTP/1.0'``. |
| 106 | |
| 107 | .. attribute:: headers |
| 108 | |
| 109 | Holds an instance of the class specified by the :attr:`MessageClass` class |
| 110 | variable. This instance parses and manages the headers in the HTTP |
Senthil Kumaran | cad2bf2 | 2014-04-16 13:56:19 -0400 | [diff] [blame] | 111 | request. The :func:`~http.client.parse_headers` function from |
| 112 | :mod:`http.client` is used to parse the headers and it requires that the |
| 113 | HTTP request provide a valid :rfc:`2822` style header. |
| 114 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 115 | .. attribute:: rfile |
| 116 | |
Martin Panter | 34eeed4 | 2016-06-29 10:12:22 +0000 | [diff] [blame] | 117 | An :class:`io.BufferedIOBase` input stream, ready to read from |
| 118 | the start of the optional input data. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 119 | |
| 120 | .. attribute:: wfile |
| 121 | |
| 122 | Contains the output stream for writing a response back to the |
| 123 | client. Proper adherence to the HTTP protocol must be used when writing to |
jugglinmike | a083c8e | 2017-05-24 14:25:50 -0400 | [diff] [blame] | 124 | this stream in order to achieve successful interoperation with HTTP |
| 125 | clients. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 126 | |
Martin Panter | 34eeed4 | 2016-06-29 10:12:22 +0000 | [diff] [blame] | 127 | .. versionchanged:: 3.6 |
| 128 | This is an :class:`io.BufferedIOBase` stream. |
| 129 | |
Berker Peksag | 0269828 | 2016-04-24 01:51:02 +0300 | [diff] [blame] | 130 | :class:`BaseHTTPRequestHandler` has the following attributes: |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 131 | |
| 132 | .. attribute:: server_version |
| 133 | |
| 134 | Specifies the server software version. You may want to override this. The |
| 135 | format is multiple whitespace-separated strings, where each string is of |
| 136 | the form name[/version]. For example, ``'BaseHTTP/0.2'``. |
| 137 | |
| 138 | .. attribute:: sys_version |
| 139 | |
| 140 | Contains the Python system version, in a form usable by the |
| 141 | :attr:`version_string` method and the :attr:`server_version` class |
| 142 | variable. For example, ``'Python/1.4'``. |
| 143 | |
| 144 | .. attribute:: error_message_format |
| 145 | |
Berker Peksag | 0269828 | 2016-04-24 01:51:02 +0300 | [diff] [blame] | 146 | Specifies a format string that should be used by :meth:`send_error` method |
| 147 | for building an error response to the client. The string is filled by |
| 148 | default with variables from :attr:`responses` based on the status code |
| 149 | that passed to :meth:`send_error`. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 150 | |
| 151 | .. attribute:: error_content_type |
| 152 | |
| 153 | Specifies the Content-Type HTTP header of error responses sent to the |
| 154 | client. The default value is ``'text/html'``. |
| 155 | |
| 156 | .. attribute:: protocol_version |
| 157 | |
| 158 | This specifies the HTTP protocol version used in responses. If set to |
| 159 | ``'HTTP/1.1'``, the server will permit HTTP persistent connections; |
| 160 | however, your server *must* then include an accurate ``Content-Length`` |
| 161 | header (using :meth:`send_header`) in all of its responses to clients. |
| 162 | For backwards compatibility, the setting defaults to ``'HTTP/1.0'``. |
| 163 | |
| 164 | .. attribute:: MessageClass |
| 165 | |
Georg Brandl | 83e9f4c | 2008-06-12 18:52:31 +0000 | [diff] [blame] | 166 | Specifies an :class:`email.message.Message`\ -like class to parse HTTP |
| 167 | headers. Typically, this is not overridden, and it defaults to |
| 168 | :class:`http.client.HTTPMessage`. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 169 | |
| 170 | .. attribute:: responses |
| 171 | |
Berker Peksag | 0269828 | 2016-04-24 01:51:02 +0300 | [diff] [blame] | 172 | This attribute contains a mapping of error code integers to two-element tuples |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 173 | containing a short and long message. For example, ``{code: (shortmessage, |
| 174 | longmessage)}``. The *shortmessage* is usually used as the *message* key in an |
Berker Peksag | 0269828 | 2016-04-24 01:51:02 +0300 | [diff] [blame] | 175 | error response, and *longmessage* as the *explain* key. It is used by |
| 176 | :meth:`send_response_only` and :meth:`send_error` methods. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 177 | |
| 178 | A :class:`BaseHTTPRequestHandler` instance has the following methods: |
| 179 | |
| 180 | .. method:: handle() |
| 181 | |
| 182 | Calls :meth:`handle_one_request` once (or, if persistent connections are |
| 183 | enabled, multiple times) to handle incoming HTTP requests. You should |
| 184 | never need to override it; instead, implement appropriate :meth:`do_\*` |
| 185 | methods. |
| 186 | |
| 187 | .. method:: handle_one_request() |
| 188 | |
| 189 | This method will parse and dispatch the request to the appropriate |
| 190 | :meth:`do_\*` method. You should never need to override it. |
| 191 | |
Senthil Kumaran | 0f476d4 | 2010-09-30 06:09:18 +0000 | [diff] [blame] | 192 | .. method:: handle_expect_100() |
| 193 | |
Martin Panter | 7462b649 | 2015-11-02 03:37:02 +0000 | [diff] [blame] | 194 | When a HTTP/1.1 compliant server receives an ``Expect: 100-continue`` |
Senthil Kumaran | 0f476d4 | 2010-09-30 06:09:18 +0000 | [diff] [blame] | 195 | request header it responds back with a ``100 Continue`` followed by ``200 |
| 196 | OK`` headers. |
| 197 | This method can be overridden to raise an error if the server does not |
| 198 | want the client to continue. For e.g. server can chose to send ``417 |
| 199 | Expectation Failed`` as a response header and ``return False``. |
| 200 | |
| 201 | .. versionadded:: 3.2 |
| 202 | |
Senthil Kumaran | 2688644 | 2013-03-15 07:53:21 -0700 | [diff] [blame] | 203 | .. method:: send_error(code, message=None, explain=None) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 204 | |
| 205 | Sends and logs a complete error reply to the client. The numeric *code* |
R David Murray | a475a8d | 2014-01-03 13:03:00 -0500 | [diff] [blame] | 206 | specifies the HTTP error code, with *message* as an optional, short, human |
| 207 | readable description of the error. The *explain* argument can be used to |
| 208 | provide more detailed information about the error; it will be formatted |
Berker Peksag | 0269828 | 2016-04-24 01:51:02 +0300 | [diff] [blame] | 209 | using the :attr:`error_message_format` attribute and emitted, after |
R David Murray | a475a8d | 2014-01-03 13:03:00 -0500 | [diff] [blame] | 210 | a complete set of headers, as the response body. The :attr:`responses` |
Berker Peksag | 0269828 | 2016-04-24 01:51:02 +0300 | [diff] [blame] | 211 | attribute holds the default values for *message* and *explain* that |
R David Murray | a475a8d | 2014-01-03 13:03:00 -0500 | [diff] [blame] | 212 | will be used if no value is provided; for unknown codes the default value |
Martin Panter | e42e129 | 2016-06-08 08:29:13 +0000 | [diff] [blame] | 213 | for both is the string ``???``. The body will be empty if the method is |
| 214 | HEAD or the response code is one of the following: ``1xx``, |
| 215 | ``204 No Content``, ``205 Reset Content``, ``304 Not Modified``. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 216 | |
Senthil Kumaran | 52d2720 | 2012-10-10 23:16:21 -0700 | [diff] [blame] | 217 | .. versionchanged:: 3.4 |
| 218 | The error response includes a Content-Length header. |
Ezio Melotti | 2acd293 | 2013-03-16 22:23:30 +0200 | [diff] [blame] | 219 | Added the *explain* argument. |
Senthil Kumaran | 2688644 | 2013-03-15 07:53:21 -0700 | [diff] [blame] | 220 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 221 | .. method:: send_response(code, message=None) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 222 | |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 223 | Adds a response header to the headers buffer and logs the accepted |
Senthil Kumaran | cc99528 | 2011-05-11 16:04:28 +0800 | [diff] [blame] | 224 | request. The HTTP response line is written to the internal buffer, |
| 225 | followed by *Server* and *Date* headers. The values for these two headers |
| 226 | are picked up from the :meth:`version_string` and |
| 227 | :meth:`date_time_string` methods, respectively. If the server does not |
| 228 | intend to send any other headers using the :meth:`send_header` method, |
Martin Panter | 7462b649 | 2015-11-02 03:37:02 +0000 | [diff] [blame] | 229 | then :meth:`send_response` should be followed by an :meth:`end_headers` |
Ezio Melotti | e9c7d6c | 2011-05-12 01:10:57 +0300 | [diff] [blame] | 230 | call. |
Senthil Kumaran | cc99528 | 2011-05-11 16:04:28 +0800 | [diff] [blame] | 231 | |
Ezio Melotti | e9c7d6c | 2011-05-12 01:10:57 +0300 | [diff] [blame] | 232 | .. versionchanged:: 3.3 |
| 233 | Headers are stored to an internal buffer and :meth:`end_headers` |
| 234 | needs to be called explicitly. |
Senthil Kumaran | cc99528 | 2011-05-11 16:04:28 +0800 | [diff] [blame] | 235 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 236 | .. method:: send_header(keyword, value) |
| 237 | |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 238 | Adds the HTTP header to an internal buffer which will be written to the |
Senthil Kumaran | 6ea17a8 | 2011-05-11 11:45:48 +0800 | [diff] [blame] | 239 | output stream when either :meth:`end_headers` or :meth:`flush_headers` is |
| 240 | invoked. *keyword* should specify the header keyword, with *value* |
| 241 | specifying its value. Note that, after the send_header calls are done, |
| 242 | :meth:`end_headers` MUST BE called in order to complete the operation. |
Senthil Kumaran | e4dad4f | 2010-11-21 14:36:14 +0000 | [diff] [blame] | 243 | |
Georg Brandl | 61063cc | 2012-06-24 22:48:30 +0200 | [diff] [blame] | 244 | .. versionchanged:: 3.2 |
| 245 | Headers are stored in an internal buffer. |
Senthil Kumaran | e4dad4f | 2010-11-21 14:36:14 +0000 | [diff] [blame] | 246 | |
Senthil Kumaran | 0f476d4 | 2010-09-30 06:09:18 +0000 | [diff] [blame] | 247 | .. method:: send_response_only(code, message=None) |
| 248 | |
Senthil Kumaran | b4760ef | 2015-06-14 17:35:37 -0700 | [diff] [blame] | 249 | Sends the response header only, used for the purposes when ``100 |
Senthil Kumaran | e4dad4f | 2010-11-21 14:36:14 +0000 | [diff] [blame] | 250 | Continue`` response is sent by the server to the client. The headers not |
| 251 | buffered and sent directly the output stream.If the *message* is not |
| 252 | specified, the HTTP message corresponding the response *code* is sent. |
Senthil Kumaran | 0f476d4 | 2010-09-30 06:09:18 +0000 | [diff] [blame] | 253 | |
| 254 | .. versionadded:: 3.2 |
| 255 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 256 | .. method:: end_headers() |
| 257 | |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 258 | Adds a blank line |
| 259 | (indicating the end of the HTTP headers in the response) |
Ezio Melotti | e9c7d6c | 2011-05-12 01:10:57 +0300 | [diff] [blame] | 260 | to the headers buffer and calls :meth:`flush_headers()`. |
Senthil Kumaran | e4dad4f | 2010-11-21 14:36:14 +0000 | [diff] [blame] | 261 | |
Ezio Melotti | e9c7d6c | 2011-05-12 01:10:57 +0300 | [diff] [blame] | 262 | .. versionchanged:: 3.2 |
| 263 | The buffered headers are written to the output stream. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 264 | |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 265 | .. method:: flush_headers() |
| 266 | |
| 267 | Finally send the headers to the output stream and flush the internal |
| 268 | headers buffer. |
| 269 | |
| 270 | .. versionadded:: 3.3 |
| 271 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 272 | .. method:: log_request(code='-', size='-') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 273 | |
| 274 | Logs an accepted (successful) request. *code* should specify the numeric |
| 275 | HTTP code associated with the response. If a size of the response is |
| 276 | available, then it should be passed as the *size* parameter. |
| 277 | |
| 278 | .. method:: log_error(...) |
| 279 | |
| 280 | Logs an error when a request cannot be fulfilled. By default, it passes |
| 281 | the message to :meth:`log_message`, so it takes the same arguments |
| 282 | (*format* and additional values). |
| 283 | |
| 284 | |
| 285 | .. method:: log_message(format, ...) |
| 286 | |
| 287 | Logs an arbitrary message to ``sys.stderr``. This is typically overridden |
| 288 | to create custom error logging mechanisms. The *format* argument is a |
| 289 | standard printf-style format string, where the additional arguments to |
| 290 | :meth:`log_message` are applied as inputs to the formatting. The client |
Senthil Kumaran | db727b4 | 2012-04-29 13:41:03 +0800 | [diff] [blame] | 291 | ip address and current date and time are prefixed to every message logged. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 292 | |
| 293 | .. method:: version_string() |
| 294 | |
| 295 | Returns the server software's version string. This is a combination of the |
Berker Peksag | 0269828 | 2016-04-24 01:51:02 +0300 | [diff] [blame] | 296 | :attr:`server_version` and :attr:`sys_version` attributes. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 297 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 298 | .. method:: date_time_string(timestamp=None) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 299 | |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 300 | Returns the date and time given by *timestamp* (which must be ``None`` or in |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 301 | the format returned by :func:`time.time`), formatted for a message |
| 302 | header. If *timestamp* is omitted, it uses the current date and time. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 303 | |
| 304 | The result looks like ``'Sun, 06 Nov 1994 08:49:37 GMT'``. |
| 305 | |
| 306 | .. method:: log_date_time_string() |
| 307 | |
| 308 | Returns the current date and time, formatted for logging. |
| 309 | |
| 310 | .. method:: address_string() |
| 311 | |
Senthil Kumaran | 1aacba4 | 2012-04-29 12:51:54 +0800 | [diff] [blame] | 312 | Returns the client address. |
| 313 | |
| 314 | .. versionchanged:: 3.3 |
| 315 | Previously, a name lookup was performed. To avoid name resolution |
| 316 | delays, it now always returns the IP address. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 317 | |
| 318 | |
Stéphane Wirtel | a17a2f5 | 2017-05-24 09:29:06 +0200 | [diff] [blame] | 319 | .. class:: SimpleHTTPRequestHandler(request, client_address, server, directory=None) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 320 | |
| 321 | This class serves files from the current directory and below, directly |
| 322 | mapping the directory structure to HTTP requests. |
| 323 | |
| 324 | A lot of the work, such as parsing the request, is done by the base class |
| 325 | :class:`BaseHTTPRequestHandler`. This class implements the :func:`do_GET` |
| 326 | and :func:`do_HEAD` functions. |
| 327 | |
| 328 | The following are defined as class-level attributes of |
| 329 | :class:`SimpleHTTPRequestHandler`: |
| 330 | |
| 331 | .. attribute:: server_version |
| 332 | |
| 333 | This will be ``"SimpleHTTP/" + __version__``, where ``__version__`` is |
| 334 | defined at the module level. |
| 335 | |
| 336 | .. attribute:: extensions_map |
| 337 | |
An Long | 5907e61 | 2020-01-09 02:28:14 +0800 | [diff] [blame] | 338 | A dictionary mapping suffixes into MIME types, contains custom overrides |
| 339 | for the default system mappings. The mapping is used case-insensitively, |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 340 | and so should contain only lower-cased keys. |
| 341 | |
An Long | 5907e61 | 2020-01-09 02:28:14 +0800 | [diff] [blame] | 342 | .. versionchanged:: 3.9 |
| 343 | This dictionary is no longer filled with the default system mappings, |
| 344 | but only contains overrides. |
| 345 | |
Stéphane Wirtel | a17a2f5 | 2017-05-24 09:29:06 +0200 | [diff] [blame] | 346 | .. attribute:: directory |
| 347 | |
| 348 | If not specified, the directory to serve is the current working directory. |
| 349 | |
Géry Ogam | 781266e | 2019-09-11 15:03:46 +0200 | [diff] [blame] | 350 | .. versionchanged:: 3.9 |
| 351 | Accepts a :term:`path-like object`. |
| 352 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 353 | The :class:`SimpleHTTPRequestHandler` class defines the following methods: |
| 354 | |
| 355 | .. method:: do_HEAD() |
| 356 | |
| 357 | This method serves the ``'HEAD'`` request type: it sends the headers it |
| 358 | would send for the equivalent ``GET`` request. See the :meth:`do_GET` |
| 359 | method for a more complete explanation of the possible headers. |
| 360 | |
| 361 | .. method:: do_GET() |
| 362 | |
| 363 | The request is mapped to a local file by interpreting the request as a |
| 364 | path relative to the current working directory. |
| 365 | |
| 366 | If the request was mapped to a directory, the directory is checked for a |
| 367 | file named ``index.html`` or ``index.htm`` (in that order). If found, the |
| 368 | file's contents are returned; otherwise a directory listing is generated |
| 369 | by calling the :meth:`list_directory` method. This method uses |
| 370 | :func:`os.listdir` to scan the directory, and returns a ``404`` error |
Serhiy Storchaka | bfdcd43 | 2013-10-13 23:09:14 +0300 | [diff] [blame] | 371 | response if the :func:`~os.listdir` fails. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 372 | |
Pierre Quentel | 351adda | 2017-04-02 12:26:12 +0200 | [diff] [blame] | 373 | If the request was mapped to a file, it is opened. Any :exc:`OSError` |
| 374 | exception in opening the requested file is mapped to a ``404``, |
| 375 | ``'File not found'`` error. If there was a ``'If-Modified-Since'`` |
| 376 | header in the request, and the file was not modified after this time, |
| 377 | a ``304``, ``'Not Modified'`` response is sent. Otherwise, the content |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 378 | type is guessed by calling the :meth:`guess_type` method, which in turn |
Pierre Quentel | 351adda | 2017-04-02 12:26:12 +0200 | [diff] [blame] | 379 | uses the *extensions_map* variable, and the file contents are returned. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 380 | |
| 381 | A ``'Content-type:'`` header with the guessed content type is output, |
| 382 | followed by a ``'Content-Length:'`` header with the file's size and a |
| 383 | ``'Last-Modified:'`` header with the file's modification time. |
| 384 | |
| 385 | Then follows a blank line signifying the end of the headers, and then the |
| 386 | contents of the file are output. If the file's MIME type starts with |
| 387 | ``text/`` the file is opened in text mode; otherwise binary mode is used. |
| 388 | |
Senthil Kumaran | 97db43b | 2010-06-16 16:41:11 +0000 | [diff] [blame] | 389 | For example usage, see the implementation of the :func:`test` function |
| 390 | invocation in the :mod:`http.server` module. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 391 | |
Pierre Quentel | 351adda | 2017-04-02 12:26:12 +0200 | [diff] [blame] | 392 | .. versionchanged:: 3.7 |
| 393 | Support of the ``'If-Modified-Since'`` header. |
Senthil Kumaran | 97db43b | 2010-06-16 16:41:11 +0000 | [diff] [blame] | 394 | |
Georg Brandl | 8971f74 | 2010-07-02 07:41:51 +0000 | [diff] [blame] | 395 | The :class:`SimpleHTTPRequestHandler` class can be used in the following |
| 396 | manner in order to create a very basic webserver serving files relative to |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 397 | the current directory:: |
Senthil Kumaran | 97db43b | 2010-06-16 16:41:11 +0000 | [diff] [blame] | 398 | |
Georg Brandl | 8971f74 | 2010-07-02 07:41:51 +0000 | [diff] [blame] | 399 | import http.server |
| 400 | import socketserver |
Senthil Kumaran | 97db43b | 2010-06-16 16:41:11 +0000 | [diff] [blame] | 401 | |
Georg Brandl | 8971f74 | 2010-07-02 07:41:51 +0000 | [diff] [blame] | 402 | PORT = 8000 |
Senthil Kumaran | 97db43b | 2010-06-16 16:41:11 +0000 | [diff] [blame] | 403 | |
Georg Brandl | 8971f74 | 2010-07-02 07:41:51 +0000 | [diff] [blame] | 404 | Handler = http.server.SimpleHTTPRequestHandler |
Senthil Kumaran | 97db43b | 2010-06-16 16:41:11 +0000 | [diff] [blame] | 405 | |
Martin Panter | 0cab9c1 | 2016-04-13 00:36:52 +0000 | [diff] [blame] | 406 | with socketserver.TCPServer(("", PORT), Handler) as httpd: |
| 407 | print("serving at port", PORT) |
| 408 | httpd.serve_forever() |
Georg Brandl | 8971f74 | 2010-07-02 07:41:51 +0000 | [diff] [blame] | 409 | |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 410 | .. _http-server-cli: |
| 411 | |
Georg Brandl | f68798b | 2010-07-03 10:22:10 +0000 | [diff] [blame] | 412 | :mod:`http.server` can also be invoked directly using the :option:`-m` |
R David Murray | e7bade5 | 2012-04-11 20:13:25 -0400 | [diff] [blame] | 413 | switch of the interpreter with a ``port number`` argument. Similar to |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 414 | the previous example, this serves files relative to the current directory:: |
Senthil Kumaran | 97db43b | 2010-06-16 16:41:11 +0000 | [diff] [blame] | 415 | |
| 416 | python -m http.server 8000 |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 417 | |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 418 | By default, server binds itself to all interfaces. The option ``-b/--bind`` |
Lisa Roach | 433433f | 2018-11-26 10:43:38 -0800 | [diff] [blame] | 419 | specifies a specific address to which it should bind. Both IPv4 and IPv6 |
| 420 | addresses are supported. For example, the following command causes the server |
| 421 | to bind to localhost only:: |
Senthil Kumaran | defe7f4 | 2013-09-15 09:37:27 -0700 | [diff] [blame] | 422 | |
| 423 | python -m http.server 8000 --bind 127.0.0.1 |
| 424 | |
| 425 | .. versionadded:: 3.4 |
| 426 | ``--bind`` argument was introduced. |
| 427 | |
Lisa Roach | 433433f | 2018-11-26 10:43:38 -0800 | [diff] [blame] | 428 | .. versionadded:: 3.8 |
| 429 | ``--bind`` argument enhanced to support IPv6 |
| 430 | |
Stéphane Wirtel | a17a2f5 | 2017-05-24 09:29:06 +0200 | [diff] [blame] | 431 | By default, server uses the current directory. The option ``-d/--directory`` |
| 432 | specifies a directory to which it should serve the files. For example, |
| 433 | the following command uses a specific directory:: |
| 434 | |
| 435 | python -m http.server --directory /tmp/ |
| 436 | |
| 437 | .. versionadded:: 3.7 |
| 438 | ``--directory`` specify alternate directory |
Georg Brandl | 8971f74 | 2010-07-02 07:41:51 +0000 | [diff] [blame] | 439 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 440 | .. class:: CGIHTTPRequestHandler(request, client_address, server) |
| 441 | |
| 442 | This class is used to serve either files or output of CGI scripts from the |
| 443 | current directory and below. Note that mapping HTTP hierarchic structure to |
| 444 | local directory structure is exactly as in :class:`SimpleHTTPRequestHandler`. |
| 445 | |
| 446 | .. note:: |
| 447 | |
| 448 | CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute |
| 449 | redirects (HTTP code 302), because code 200 (script output follows) is |
| 450 | sent prior to execution of the CGI script. This pre-empts the status |
| 451 | code. |
| 452 | |
| 453 | The class will however, run the CGI script, instead of serving it as a file, |
| 454 | if it guesses it to be a CGI script. Only directory-based CGI are used --- |
| 455 | the other common server configuration is to treat special extensions as |
| 456 | denoting CGI scripts. |
| 457 | |
| 458 | The :func:`do_GET` and :func:`do_HEAD` functions are modified to run CGI scripts |
| 459 | and serve the output, instead of serving files, if the request leads to |
| 460 | somewhere below the ``cgi_directories`` path. |
| 461 | |
| 462 | The :class:`CGIHTTPRequestHandler` defines the following data member: |
| 463 | |
| 464 | .. attribute:: cgi_directories |
| 465 | |
| 466 | This defaults to ``['/cgi-bin', '/htbin']`` and describes directories to |
| 467 | treat as containing CGI scripts. |
| 468 | |
| 469 | The :class:`CGIHTTPRequestHandler` defines the following method: |
| 470 | |
| 471 | .. method:: do_POST() |
| 472 | |
| 473 | This method serves the ``'POST'`` request type, only allowed for CGI |
| 474 | scripts. Error 501, "Can only POST to CGI scripts", is output when trying |
| 475 | to POST to a non-CGI url. |
| 476 | |
| 477 | Note that CGI scripts will be run with UID of user nobody, for security |
| 478 | reasons. Problems with the CGI script will be translated to error 403. |
Senthil Kumaran | 1251faf | 2012-06-03 16:15:54 +0800 | [diff] [blame] | 479 | |
| 480 | :class:`CGIHTTPRequestHandler` can be enabled in the command line by passing |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 481 | the ``--cgi`` option:: |
Senthil Kumaran | 1251faf | 2012-06-03 16:15:54 +0800 | [diff] [blame] | 482 | |
| 483 | python -m http.server --cgi 8000 |