| Home | Trees | Indices | Help |
|
|---|
|
|
The purpose of this package is to implement URIs (Uniform Resource Identifiers) as specified by RFC2396.
| Submodules | |
| |
| Classes | |
|
Path A path is a sequence of segments. |
|
|
Reference A common URI reference is made of five components: |
|
| Functions | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
| Function Details |
Decodes a query as defined by the "application/x-www-form-urlencoded" content type. The value expected is a byte string like "a=1&b=2"; the value returned is a dictonary like {'a': 1, 'b': 2}. See http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1 for details. |
This method encodes a query as defined by the "application/x-www-form-urlencoded" content type (see http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1 for details) The value expected is a dictonary like {'a': 1, 'b': 2}. The value returned is a byte string like "a=1&b=2". |
Returns the absolute URI for the given reference. Uses "base" to resolve the reference, if "base" is not given default to the current working directory. |
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Feb 21 14:51:14 2008 |