moviewyrm/bookwyrm/importers/goodreads_import.py
2021-11-10 16:49:54 -08:00

10 lines
286 B
Python

""" handle reading a csv from goodreads """
from . import Importer
class GoodreadsImporter(Importer):
"""Goodreads is the default importer, thus Importer follows its structure.
For a more complete example of overriding see librarything_import.py"""
service = "Goodreads"