Vorbereitung Release 0.2.0 #83

Merged
tpeetz merged 178 commits from develop/0.2.0 into main 2026-01-29 22:50:42 +00:00
Showing only changes of commit 6c71086104 - Show all commits
+3
View File
@@ -45,6 +45,9 @@ if __name__ == '__main__':
log.info(f"{item['id']} - {str(link)}") log.info(f"{item['id']} - {str(link)}")
if not link: if not link:
continue continue
if link == "None":
item['url'] = None
else:
try: try:
r = requests.get(link) r = requests.get(link)
soup = BeautifulSoup(r.content, "html.parser") soup = BeautifulSoup(r.content, "html.parser")