blob: 2abc570d1890263d59defb15df99ca75fc44f1c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
class ParserBase:
"""
Base parser to be subclassed when creating an own parser.
"""
def __init__(self, content):
self.content = content
def css_elems(self):
"""
Return an iterable containing the css elements to handle
"""
raise NotImplementedError
def js_elems(self):
"""
Return an iterable containing the js elements to handle
"""
raise NotImplementedError
def elem_attribs(self, elem):
"""
Return the dictionary like attribute store of the given element
"""
raise NotImplementedError
def elem_content(self, elem):
"""
Return the content of the given element
"""
raise NotImplementedError
def elem_name(self, elem):
"""
Return the name of the given element
"""
raise NotImplementedError
def elem_str(self, elem):
"""
Return the string representation of the given elem
"""
raise NotImplementedError
|