bookwyrm/bookwyrm/goodreads_import.py

15 lines
485 B
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" handle reading a csv from goodreads """
2021-02-20 16:02:36 +00:00
from bookwyrm.importer import Importer
2021-03-08 16:49:10 +00:00
# GoodReads is the default importer, thus Importer follows its structure. For a more complete example of overriding see librarything_import.py
2020-03-29 07:05:09 +00:00
2021-02-20 16:02:36 +00:00
class GoodreadsImporter(Importer):
2021-03-08 16:49:10 +00:00
service = "GoodReads"
2020-03-25 12:58:27 +00:00
2021-02-20 16:02:36 +00:00
def parse_fields(self, data):
2021-03-08 16:49:10 +00:00
data.update({"import_source": self.service})
2021-02-20 16:02:36 +00:00
# add missing 'Date Started' field
2021-03-08 16:49:10 +00:00
data.update({"Date Started": None})
2021-02-20 16:02:36 +00:00
return data