Merge branch 'newui' of github.com:th3r00t/pyShelf into newui

This commit is contained in:
Raelon Masters
2020-06-13 09:24:34 -04:00

View File

@@ -120,6 +120,7 @@ class Catalogue:
publisher = soup.find("dc:identifier")
date = soup.find("dc:date")
rights = soup.find("dc:rights")
tags = soup.find_all("dc:subject")
breakpoint()
book_details = [
title,
@@ -131,6 +132,7 @@ class Catalogue:
publisher,
date,
rights,
tags
]
return book_details