Home | Trees | Index | Help |
|
---|
Package lxml :: Module pyclasslookup :: Class _ElementProxy |
|
object
--+
|
_ElementProxy
Method Summary | |
---|---|
x.__getitem__(y) <==> x[y] | |
Use of negative indices is not supported. | |
x.__len__() <==> len(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
x.__nonzero__() <==> x != 0 | |
x.__repr__() <==> repr(x) | |
Gets an element attribute. | |
Returns all subelements. | |
Returns the following sibling of this element or None. | |
Returns the parent of this element or None for the root element. | |
Returns the preceding sibling of this element or None. | |
Gets element attributes, as a sequence. | |
Gets a list of attribute names. | |
Gets element attributes, as a sequence. | |
Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Class Variable Summary | |
---|---|
PyCObject |
__pyx_vtable__ = <PyCObject object at 0x8289098>
|
getset_descriptor |
attrib = <attribute 'attrib' of 'lxml.pyclasslookup._Ele...
|
getset_descriptor |
prefix = <attribute 'prefix' of 'lxml.pyclasslookup._Ele...
|
getset_descriptor |
sourceline = <attribute 'sourceline' of 'lxml.pyclassloo...
|
getset_descriptor |
tag = <attribute 'tag' of 'lxml.pyclasslookup._ElementPr...
|
getset_descriptor |
tail = <attribute 'tail' of 'lxml.pyclasslookup._Element...
|
getset_descriptor |
text = <attribute 'text' of 'lxml.pyclasslookup._Element...
|
Method Details |
---|
__getitem__(x,
y)
x.__getitem__(y) <==> x[y]
|
__getslice__(x,
i,
j)
Use of negative indices is not supported.
|
__len__(x)
x.__len__() <==> len(x)
|
__new__(T, S, ...)T.__new__(S, ...) -> a new object with type S, a subtype of T
|
__nonzero__(x)
x.__nonzero__() <==> x != 0
|
__repr__(x)
x.__repr__() <==> repr(x)
|
get(...)Gets an element attribute. |
getchildren(...)Returns all subelements. The elements are returned in document order. |
getnext(...)Returns the following sibling of this element or None. |
getparent(...)Returns the parent of this element or None for the root element. |
getprevious(...)Returns the preceding sibling of this element or None. |
items(...)Gets element attributes, as a sequence. The attributes are returned in an arbitrary order. |
keys(...)Gets a list of attribute names. The names are returned in an arbitrary order (just like for an ordinary Python dictionary). |
values(...)Gets element attributes, as a sequence. The attributes are returned in an arbitrary order. |
Class Variable Details |
---|
__pyx_vtable__
|
attrib
|
prefix
|
sourceline
|
tag
|
tail
|
text
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Fri Aug 17 13:52:29 2007 | http://epydoc.sf.net |