-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtml_utils.py
106 lines (77 loc) · 2.79 KB
/
html_utils.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
from bx_py_utils.text_tools import cutout
try:
from lxml import etree, html # lxml is optional requirement
except ModuleNotFoundError:
html = None
else:
from lxml.etree import XMLSyntaxError
try:
from bs4 import BeautifulSoup # BeautifulSoup4 is optional requirement
except ModuleNotFoundError:
BeautifulSoup = None
class InvalidHtml(AssertionError):
"""
XMLSyntaxError with better error messages: used in validate_html()
"""
def __init__(self, *args):
self.args = args
data, origin_err = args
assert isinstance(data, str)
assert isinstance(origin_err, XMLSyntaxError)
self.origin_msg = origin_err.msg
line_no, column = origin_err.position
self.cutout_text = cutout(data, line_no, column, extra_lines=3)
def __str__(self):
return (
f'{self.origin_msg}\n'
f'{"-"*80}\n'
f'{self.cutout_text}\n'
f'{"-"*80}'
)
class ElementsNotFoundError(AssertionError):
"""
Happens if requested HTML elements cannot be found
"""
pass
def validate_html(data, **parser_kwargs):
"""
Validate a HTML document via XMLParser (Needs 'lxml' package)
There are a few more ways to validate HTML documents,
but the intention here is just to raise an error on
really broken documents.
To be more strict set "recover=False"
"""
assert isinstance(data, str)
if html is None:
raise ModuleNotFoundError(
'This feature needs "lxml", please add it to you requirements'
)
parser = etree.XMLParser(**parser_kwargs)
try:
parser.feed(data)
parser.close()
except XMLSyntaxError as err:
raise InvalidHtml(data, err)
def get_beautiful_soup_instance(data, parser='html.parser', **bs_kwargs):
assert isinstance(data, str)
if BeautifulSoup is None:
raise ModuleNotFoundError(
'This feature needs "beautifulsoup4", please add it to you requirements'
)
return BeautifulSoup(data, parser, **bs_kwargs)
def pretty_format_html(data, parser='html.parser', **bs_kwargs):
"""
Pretty format given HTML document via BeautifulSoup (Needs 'beautifulsoup4' package)
"""
soup = get_beautiful_soup_instance(data, parser, **bs_kwargs)
return soup.prettify().rstrip()
def get_html_elements(data, query_selector, parser='html.parser', **bs_kwargs):
"""
Returns the selected HTML elements as string
"""
soup = get_beautiful_soup_instance(data, parser, **bs_kwargs)
selected_elements = soup.select(query_selector)
if not selected_elements:
raise ElementsNotFoundError(
f'The query selector {query_selector} did not match any element in the HTML document')
return ''.join(str(tag) for tag in selected_elements)