1 | 2 | 3 Next
1 | 2 | 3 Next
All Samples(1084) | Call(1041) | Derive(0) | Import(43)
Create an opener object from a list of handlers. The opener will use several default handlers, including support for HTTP, FTP and when applicable, HTTPS. If any of the handlers passed as arguments are subclasses of the default handlers, the default handlers will not be used.
All Samples(341) | Call(107) | Derive(22) | Import(212)
Raised when HTTP error occurs, but also acts like non-error return
All Samples(114) | Call(17) | Derive(95) | Import(2)
An authentication protocol defined by RFC 2069 Digest authentication improves on basic authentication because it does not transmit passwords in the clear.
All Samples(105) | Call(90) | Derive(0) | Import(15)
quote('abc def') -> 'abc%20def'
Each part of a URL, e.g. the path info, the query, etc., has a
different set of reserved characters that must be quoted.
RFC 2396 Uniform Resource Identifiers (URI): Generic Syntax lists
the following reserved characters.
reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
"$" | ","(more...)
1 | 2 | 3 Next