class documentation
A URI object.
See Also | |
https://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging-21 |
Class Method | from |
Parse the given URI into a URI . |
Method | __init__ |
No summary |
Method | to |
Assemble the individual parts of the URI into a fully formed URI. |
Instance Variable | fragment |
Undocumented |
Instance Variable | host |
Undocumented |
Instance Variable | netloc |
Undocumented |
Instance Variable | params |
Undocumented |
Instance Variable | path |
Undocumented |
Instance Variable | port |
Undocumented |
Instance Variable | query |
Undocumented |
Instance Variable | scheme |
Undocumented |
Property | origin |
The absolute URI path including URI parameters, query string and fragment identifier. |
Parameters | |
scheme:bytes | URI scheme specifier. |
netloc:bytes | Network location component. |
host:bytes | Host name. For IPv6 address literals the brackets are stripped. |
port:int | Port number. |
path:bytes | Hierarchical path. |
params:bytes | Parameters for last path segment. |
query:bytes | Query string. |
fragment:bytes | Fragment identifier. |
The absolute URI path including URI parameters, query string and fragment identifier.
See Also | |
https://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging-21#section-5.3 |