Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Data Structures | |
class | HTTPServer |
class | BaseHTTPRequestHandler |
Functions | |
def | test |
Variables | |
string | __version__ = "0.2" |
list | __all__ = ["HTTPServer", "BaseHTTPRequestHandler"] |
string | DEFAULT_ERROR_MESSAGE |
HTTP server base class. Note: the class in this module doesn't implement any HTTP request; see SimpleHTTPServer for simple implementations of GET, HEAD and POST (including CGI scripts). Contents: - BaseHTTPRequestHandler: HTTP request handler base class - test: test function XXX To do: - send server version - log requests even later (to capture byte count) - log user-agent header and other interesting goodies - send error log to separate file - are request names really case sensitive?
def BaseHTTPServer.test | ( | HandlerClass = BaseHTTPRequestHandler , |
|
ServerClass = HTTPServer |
|||
) |
Test the HTTP request handler class. This runs an HTTP server on port 8000 (or the first command line argument).
Definition at line 462 of file BaseHTTPServer.py.
list __all__ = ["HTTPServer", "BaseHTTPRequestHandler"] |
Definition at line 66 of file BaseHTTPServer.py.
string __version__ = "0.2" |
Definition at line 64 of file BaseHTTPServer.py.
string DEFAULT_ERROR_MESSAGE |
Definition at line 75 of file BaseHTTPServer.py.