# Functions
GetCookieString returns a string of all cookies for urls.
NewJar creates a new cookie jar.
SetCookies parses the cookie string and adds the resulting cookies (corresponding to the domain of urls) to the jar.
# Variables
CloseResponse closes the response.
Execute creates a request from the parameters, executes it, and returns a tuple of response info on success or an error message on failure.
GetCookieHeader returns the Cookie request header value for url.
ParseCookieString parses cookies and returns a name-value map of them.
ParseQS implements python/urllib.parse.parse_qs.
RandomIPv4 generates a random IPv4 address in the range denoted by cidr.
ReadResponseBody reads the entire body of the response and closes it.
SetCookie adds a new cookie to the jar.
Unquote implements python/urllib.parse.unquote.
UnquotePlus implements python/urllib.parse.unquote_plus.
URLEncode implements python/urllib.parse.urlencode.
URLJoin implements approximately to python/urllib.parse.urljoin.
URLParse implements python/urllib.parse.urlparse.
URLUnparse implements python/urllib.parse.urlunparse.