Update metadata exception types

This commit is contained in:
Liam Steckler 2024-02-14 07:38:07 -08:00
parent 18c60cf2d9
commit d9ee0a632e

View file

@ -107,14 +107,14 @@ with Session(engine) as session:
article_record.dfp_targeting_id = article_soup.find( article_record.dfp_targeting_id = article_soup.find(
"script", {"class": "dfp_targeting", "data-key": "id"} "script", {"class": "dfp_targeting", "data-key": "id"}
)["data-value"] )["data-value"]
except NameError: except (NameError, TypeError):
print("Could not find or load IDs for this post") print("Could not find or load IDs for this post")
try: try:
tags = article_soup.find( tags = article_soup.find(
"script", {"class": "dfp_targeting", "data-key": "tags"} "script", {"class": "dfp_targeting", "data-key": "tags"}
)["data-value"].split("|") )["data-value"].split("|")
except NameError: except (NameError, TypeError):
print("Could not find or load any tags for this article") print("Could not find or load any tags for this article")
tags = [] tags = []