2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
:mod:`BaseHTTPServer` --- Basic HTTP server
|
|
|
|
===========================================
|
|
|
|
|
|
|
|
.. module:: BaseHTTPServer
|
|
|
|
:synopsis: Basic HTTP server (base class for SimpleHTTPServer and CGIHTTPServer).
|
|
|
|
|
|
|
|
|
|
|
|
.. index::
|
|
|
|
pair: WWW; server
|
|
|
|
pair: HTTP; protocol
|
|
|
|
single: URL
|
|
|
|
single: httpd
|
|
|
|
|
|
|
|
.. index::
|
|
|
|
module: SimpleHTTPServer
|
|
|
|
module: CGIHTTPServer
|
|
|
|
|
|
|
|
This module defines two classes for implementing HTTP servers (Web servers).
|
|
|
|
Usually, this module isn't used directly, but is used as a basis for building
|
|
|
|
functioning Web servers. See the :mod:`SimpleHTTPServer` and
|
|
|
|
:mod:`CGIHTTPServer` modules.
|
|
|
|
|
2008-05-11 23:31:37 -03:00
|
|
|
The first class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer`
|
2007-08-15 11:28:22 -03:00
|
|
|
subclass. It creates and listens at the HTTP socket, dispatching the requests
|
|
|
|
to a handler. Code to create and run the server looks like this::
|
|
|
|
|
|
|
|
def run(server_class=BaseHTTPServer.HTTPServer,
|
|
|
|
handler_class=BaseHTTPServer.BaseHTTPRequestHandler):
|
|
|
|
server_address = ('', 8000)
|
|
|
|
httpd = server_class(server_address, handler_class)
|
|
|
|
httpd.serve_forever()
|
|
|
|
|
|
|
|
|
|
|
|
.. class:: HTTPServer(server_address, RequestHandlerClass)
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
This class builds on the :class:`TCPServer` class by storing the server
|
|
|
|
address as instance variables named :attr:`server_name` and
|
|
|
|
:attr:`server_port`. The server is accessible by the handler, typically
|
|
|
|
through the handler's :attr:`server` instance variable.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. class:: BaseHTTPRequestHandler(request, client_address, server)
|
|
|
|
|
|
|
|
This class is used to handle the HTTP requests that arrive at the server. By
|
2008-04-24 22:59:09 -03:00
|
|
|
itself, it cannot respond to any actual HTTP requests; it must be subclassed
|
|
|
|
to handle each request method (e.g. GET or
|
|
|
|
POST). :class:`BaseHTTPRequestHandler` provides a number of class and
|
|
|
|
instance variables, and methods for use by subclasses.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
The handler will parse the request and the headers, then call a method
|
|
|
|
specific to the request type. The method name is constructed from the
|
|
|
|
request. For example, for the request method ``SPAM``, the :meth:`do_SPAM`
|
|
|
|
method will be called with no arguments. All of the relevant information is
|
|
|
|
stored in instance variables of the handler. Subclasses should not need to
|
|
|
|
override or extend the :meth:`__init__` method.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
:class:`BaseHTTPRequestHandler` has the following instance variables:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: client_address
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Contains a tuple of the form ``(host, port)`` referring to the client's
|
|
|
|
address.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: command
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Contains the command (request type). For example, ``'GET'``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: path
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Contains the request path.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: request_version
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Contains the version string from the request. For example, ``'HTTP/1.0'``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: headers
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Holds an instance of the class specified by the :attr:`MessageClass` class
|
|
|
|
variable. This instance parses and manages the headers in the HTTP
|
|
|
|
request.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: rfile
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Contains an input stream, positioned at the start of the optional input
|
|
|
|
data.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: wfile
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Contains the output stream for writing a response back to the
|
|
|
|
client. Proper adherence to the HTTP protocol must be used when writing to
|
|
|
|
this stream.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
:class:`BaseHTTPRequestHandler` has the following class variables:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: server_version
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Specifies the server software version. You may want to override this. The
|
|
|
|
format is multiple whitespace-separated strings, where each string is of
|
|
|
|
the form name[/version]. For example, ``'BaseHTTP/0.2'``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: sys_version
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Contains the Python system version, in a form usable by the
|
|
|
|
:attr:`version_string` method and the :attr:`server_version` class
|
|
|
|
variable. For example, ``'Python/1.4'``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: error_message_format
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Specifies a format string for building an error response to the client. It
|
|
|
|
uses parenthesized, keyed format specifiers, so the format operand must be
|
|
|
|
a dictionary. The *code* key should be an integer, specifying the numeric
|
|
|
|
HTTP error code value. *message* should be a string containing a
|
|
|
|
(detailed) error message of what occurred, and *explain* should be an
|
|
|
|
explanation of the error code number. Default *message* and *explain*
|
|
|
|
values can found in the *responses* class variable.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
#1492: allow overriding BaseHTTPServer's content type for error messages.
........
r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
#2165: fix test_logging failure on some machines.
........
r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added
test cases, doc changes and NEWS entry. Thanks Jason and Ralf
Schmitt.
........
r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
#2067: file.__exit__() now calls subclasses' close() method.
........
r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
More difflib examples. Written for GHOP by Josip Dzolonga.
........
r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
#2072: correct documentation for .rpc_paths
........
r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
#2161: Fix opcode name.
........
r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
#1119331: ncurses will just call exit() if the terminal name isn't found.
Call setupterm() first so that we get a Python exception instead of just existing.
........
2008-02-23 12:23:06 -04:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: error_content_type
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
#1492: allow overriding BaseHTTPServer's content type for error messages.
........
r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
#2165: fix test_logging failure on some machines.
........
r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added
test cases, doc changes and NEWS entry. Thanks Jason and Ralf
Schmitt.
........
r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
#2067: file.__exit__() now calls subclasses' close() method.
........
r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
More difflib examples. Written for GHOP by Josip Dzolonga.
........
r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
#2072: correct documentation for .rpc_paths
........
r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
#2161: Fix opcode name.
........
r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
#1119331: ncurses will just call exit() if the terminal name isn't found.
Call setupterm() first so that we get a Python exception instead of just existing.
........
2008-02-23 12:23:06 -04:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Specifies the Content-Type HTTP header of error responses sent to the
|
|
|
|
client. The default value is ``'text/html'``.
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
#1492: allow overriding BaseHTTPServer's content type for error messages.
........
r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
#2165: fix test_logging failure on some machines.
........
r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added
test cases, doc changes and NEWS entry. Thanks Jason and Ralf
Schmitt.
........
r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
#2067: file.__exit__() now calls subclasses' close() method.
........
r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
More difflib examples. Written for GHOP by Josip Dzolonga.
........
r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
#2072: correct documentation for .rpc_paths
........
r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
#2161: Fix opcode name.
........
r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
#1119331: ncurses will just call exit() if the terminal name isn't found.
Call setupterm() first so that we get a Python exception instead of just existing.
........
2008-02-23 12:23:06 -04:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: protocol_version
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
This specifies the HTTP protocol version used in responses. If set to
|
|
|
|
``'HTTP/1.1'``, the server will permit HTTP persistent connections;
|
|
|
|
however, your server *must* then include an accurate ``Content-Length``
|
|
|
|
header (using :meth:`send_header`) in all of its responses to clients.
|
|
|
|
For backwards compatibility, the setting defaults to ``'HTTP/1.0'``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: MessageClass
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. index:: single: Message (in module mimetools)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Specifies a :class:`rfc822.Message`\ -like class to parse HTTP headers.
|
|
|
|
Typically, this is not overridden, and it defaults to
|
|
|
|
:class:`mimetools.Message`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. attribute:: responses
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
This variable contains a mapping of error code integers to two-element tuples
|
|
|
|
containing a short and long message. For example, ``{code: (shortmessage,
|
|
|
|
longmessage)}``. The *shortmessage* is usually used as the *message* key in an
|
|
|
|
error response, and *longmessage* as the *explain* key (see the
|
|
|
|
:attr:`error_message_format` class variable).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
A :class:`BaseHTTPRequestHandler` instance has the following methods:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: handle()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Calls :meth:`handle_one_request` once (or, if persistent connections are
|
|
|
|
enabled, multiple times) to handle incoming HTTP requests. You should
|
|
|
|
never need to override it; instead, implement appropriate :meth:`do_\*`
|
|
|
|
methods.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: handle_one_request()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
This method will parse and dispatch the request to the appropriate
|
|
|
|
:meth:`do_\*` method. You should never need to override it.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: send_error(code[, message])
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Sends and logs a complete error reply to the client. The numeric *code*
|
|
|
|
specifies the HTTP error code, with *message* as optional, more specific text. A
|
|
|
|
complete set of headers is sent, followed by text composed using the
|
|
|
|
:attr:`error_message_format` class variable.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: send_response(code[, message])
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Sends a response header and logs the accepted request. The HTTP response
|
|
|
|
line is sent, followed by *Server* and *Date* headers. The values for
|
|
|
|
these two headers are picked up from the :meth:`version_string` and
|
|
|
|
:meth:`date_time_string` methods, respectively.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: send_header(keyword, value)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Writes a specific HTTP header to the output stream. *keyword* should
|
|
|
|
specify the header keyword, with *value* specifying its value.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: end_headers()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Sends a blank line, indicating the end of the HTTP headers in the
|
|
|
|
response.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: log_request([code[, size]])
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Logs an accepted (successful) request. *code* should specify the numeric
|
|
|
|
HTTP code associated with the response. If a size of the response is
|
|
|
|
available, then it should be passed as the *size* parameter.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: log_error(...)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Logs an error when a request cannot be fulfilled. By default, it passes
|
|
|
|
the message to :meth:`log_message`, so it takes the same arguments
|
|
|
|
(*format* and additional values).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: log_message(format, ...)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Logs an arbitrary message to ``sys.stderr``. This is typically overridden
|
|
|
|
to create custom error logging mechanisms. The *format* argument is a
|
|
|
|
standard printf-style format string, where the additional arguments to
|
|
|
|
:meth:`log_message` are applied as inputs to the formatting. The client
|
|
|
|
address and current date and time are prefixed to every message logged.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: version_string()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Returns the server software's version string. This is a combination of the
|
|
|
|
:attr:`server_version` and :attr:`sys_version` class variables.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: date_time_string([timestamp])
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Returns the date and time given by *timestamp* (which must be in the
|
|
|
|
format returned by :func:`time.time`), formatted for a message header. If
|
|
|
|
*timestamp* is omitted, it uses the current date and time.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
The result looks like ``'Sun, 06 Nov 1994 08:49:37 GMT'``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
.. method:: log_date_time_string()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
Returns the current date and time, formatted for logging.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2008-04-24 22:59:09 -03:00
|
|
|
|
|
|
|
.. method:: address_string()
|
|
|
|
|
|
|
|
Returns the client address, formatted for logging. A name lookup is
|
|
|
|
performed on the client's IP address.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
Module :mod:`CGIHTTPServer`
|
|
|
|
Extended request handler that supports CGI scripts.
|
|
|
|
|
|
|
|
Module :mod:`SimpleHTTPServer`
|
|
|
|
Basic request handler that limits response to files actually under the document
|
|
|
|
root.
|
|
|
|
|