2021-03-08 11:49:10 -05:00
|
|
|
""" handle reading a csv from goodreads """
|
2021-03-30 11:56:25 -04:00
|
|
|
from . import Importer
|
2020-03-25 08:29:21 -04:00
|
|
|
|
2020-03-29 03:05:09 -04:00
|
|
|
|
2021-02-20 11:02:36 -05:00
|
|
|
class GoodreadsImporter(Importer):
|
2021-10-15 16:47:28 -04:00
|
|
|
"""Goodreads is the default importer, thus Importer follows its structure.
|
2021-03-30 11:46:22 -04:00
|
|
|
For a more complete example of overriding see librarything_import.py"""
|
2021-03-30 11:43:38 -04:00
|
|
|
|
2021-10-15 16:47:28 -04:00
|
|
|
service = "Goodreads"
|