2019-05-22 00:17:17 +02:00
|
|
|
import typing
|
|
|
|
|
|
|
|
|
|
|
|
class ElementTree:
|
|
|
|
tag: typing.Optional[str] = None
|
|
|
|
"""The element's name."""
|
|
|
|
|
|
|
|
attrib: typing.Optional[typing.Dict[str, str]] = None
|
|
|
|
"""Dictionary of the element's attributes."""
|
|
|
|
|
|
|
|
text: typing.Optional[str] = None
|
|
|
|
|
|
|
|
tail: typing.Optional[str] = None
|
|
|
|
|
|
|
|
def __len__(self) -> int:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def __iter__(self) -> typing.Iterator['ElementTree']:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def fromstring(cls, xml_str: str) -> 'ElementTree':
|
2019-05-22 07:56:16 +02:00
|
|
|
raise NotImplementedError()
|