cgi.parse(fp=None, environ=os.environ, keep_blank_values=False, strict_parsing=False)
Parse a query in the environment or from a file (the file defaults to sys.stdin
). The keep_blank_values and strict_parsing parameters are passed to urllib.parse.parse_qs()
unchanged.
Please login to continue.