skip fake links

This commit is contained in:
simon 2021-03-29 13:20:43 +07:00
parent 794a28398a
commit 1d88097ad6
1 changed files with 6 additions and 3 deletions

View File

@ -59,9 +59,12 @@ def get_images(soup, config):
# gallery item from a tag
all_a_tag = soup.find_all('a')
for a_tag in all_a_tag:
a_href = a_tag['href']
if upload_folder in a_href:
img_url_set.add(a_href)
try:
a_href = a_tag['href']
if upload_folder in a_href:
img_url_set.add(a_href)
except KeyError:
continue
# external
all_external_css = soup.find_all("link", {"rel": "stylesheet"})
for css_file in all_external_css: