class twisted.web.client.URI: (source)
A URI object.
See Also | https://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging-21 |
Method | __init__ | |
Instance Variable | scheme | Undocumented |
Instance Variable | netloc | Undocumented |
Instance Variable | host | Undocumented |
Instance Variable | port | Undocumented |
Instance Variable | path | Undocumented |
Instance Variable | params | Undocumented |
Instance Variable | query | Undocumented |
Instance Variable | fragment | Undocumented |
Class Method | fromBytes | Parse the given URI into a URI . |
Method | toBytes | Assemble the individual parts of the URI into a fully formed URI. |
Property | originForm | The absolute URI path including URI parameters, query string and fragment identifier. |
Parameters | scheme | URI scheme specifier. (type: bytes ) |
netloc | Network location component. (type: bytes ) | |
host | Host name. For IPv6 address literals the brackets are stripped. (type: bytes ) | |
port | Port number. (type: int ) | |
path | Hierarchical path. (type: bytes ) | |
params | Parameters for last path segment. (type: bytes ) | |
query | Query string. (type: bytes ) | |
fragment | Fragment identifier. (type: bytes ) |
Assemble the individual parts of the URI into a fully formed URI.
Returns | A fully formed URI. (type: bytes ) |
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 |
bytes
)