This commit is contained in:
WorldTeacher
2024-10-10 14:41:20 +02:00
parent 8b5c355bf1
commit 5af4286270
5 changed files with 209 additions and 63 deletions

View File

@@ -49,12 +49,15 @@ class BookGrabber(QThread):
signature = str(entry)
self.logger.log_info("Processing entry: " + signature)
webdata = WebRequest(self.appnr).get_ppn(entry).get_data()
webdata = WebRequest().set_apparat(self.appnr).get_ppn(entry).get_data()
if webdata == "error":
continue
bd = BibTextTransformer(self.mode).get_data(webdata).return_data()
if bd is None:
continue
bd.signature = entry
transformer = (
BibTextTransformer("RDS").get_data(webdata).return_data("rds_data")