CGIRequest

This is just a bundle of the parameters in a CGI request. Public variables:

args

Argument list of the original CGI command.

env

Environment of the original CGI command (a dictionary).

query

Query parameters of the original CGI command parsed into a dictionary.

path

The CGI command path info, broken up into a list. Path info is the URL path that follows the command name. If the URL is "http://somehost/cgi-bin/cgipdisp/service/name", then this variable would contain ['service', 'name'].

Methods

__init__(self, args, env, query, path)

   def __init__(self, args, env, query, path):