|
|
|
|
|
__getitem__(...)
Returns the subelement at the given position. |
|
|
|
|
|
__new__(T,
S,
...)
Returns:
a new object with type S, a subtype of T |
|
|
|
|
|
|
|
append(...)
Adds a subelement to the end of this element. |
|
|
|
get(...)
Gets an element attribute. |
|
|
|
insert(...)
Inserts a subelement at the given position in this element |
|
|
|
items(...)
Gets element attributes, as a sequence. |
|
|
|
keys(...)
Gets a list of attribute names. |
|
|
|
set(...)
Sets an element attribute. |
|
|
|
values(...)
Gets element attribute values as a sequence of strings. |
|
|
Inherited from _Element :
__contains__ ,
__copy__ ,
__deepcopy__ ,
__getslice__ ,
__iter__ ,
__nonzero__ ,
__repr__ ,
__reversed__ ,
addnext ,
addprevious ,
clear ,
extend ,
find ,
findall ,
findtext ,
getchildren ,
getiterator ,
getnext ,
getparent ,
getprevious ,
getroottree ,
index ,
iter ,
iterancestors ,
iterchildren ,
iterdescendants ,
itersiblings ,
makeelement ,
remove ,
replace ,
xpath
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__init__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__str__
|