We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e07e705 commit 783e47aCopy full SHA for 783e47a
1 file changed
crawler/core/utils/base_tool.py
@@ -44,11 +44,11 @@ def get_all_attribute_words(tbody, results=[]):
44
img_tag = td.find("img")
45
46
if img_tag and img_tag.has_attr("src"):
47
- value = img_tag["src"]
+ value += f'_{img_tag["src"]}'
48
else:
49
a_tag = td.find("a")
50
if a_tag and a_tag.has_attr("href"):
51
- value = a_tag["href"]
+ value += f'_{a_tag["href"]}'
52
53
_results.append(f"\t{label}:\t{value}")
54
row.decompose()
0 commit comments