| Home | Trees | Index | Help |
|---|
| Package svnmailer :: Package browser :: Module _base :: Class ParsedUrl |
|
object --+
|
ParsedUrl
| Method Summary | |
|---|---|
Initialization | |
| str |
Returns the URL as string |
ParsedQuery |
Creates a new ParsedQuery instance |
ParsedUrl |
Returns a new identical object |
| Inherited from object | |
x.__delattr__('name') <==> del x.name... | |
x.__getattribute__('name') <==> x.name... | |
x.__hash__() <==> hash(x)... | |
helper for pickle... | |
helper for pickle... | |
x.__repr__() <==> repr(x)... | |
x.__setattr__('name', value) <==> x.name = value... | |
| Inherited from type | |
T.__new__(S, ...) -> a new object with type S, a subtype of T... | |
| Instance Variable Summary | |
|---|---|
| str | fragment: The fragment (anchor) |
| str | netloc: The netloc (www.example.org) |
| str | param: The path parameter (jsessionid=abcdef) |
| str | path: The path (/foo/bar) |
ParsedQuery |
query: The query string (a=b&c=d) |
| str | scheme: The scheme (http) |
| Class Variable Summary | |
|---|---|
| tuple | PARSENAMES: names for the urlparse tuple |
| Method Details |
|---|
__init__(self,
url)
Initialization |
__str__(self)
Returns the URL as string |
_createParsedQuery(self, query)Creates a newParsedQuery instance
|
copy(self)Returns a new identical object |
| Instance Variable Details |
|---|
fragmentThe fragment (anchor)
|
netlocThe netloc (www.example.org)
|
paramThe path parameter (jsessionid=abcdef)
|
pathThe path (/foo/bar)
|
queryThe query string (a=b&c=d)
|
schemeThe scheme (http)
|
| Class Variable Details |
|---|
PARSENAMESnames for the urlparse tuple
|
| Home | Trees | Index | Help |
|---|
| Generated by Epydoc 2.0 on Sun Sep 25 20:49:02 2005 | http://epydoc.sf.net |