1
0
Fork 0

Add Calibre importer for CSV exports

Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
This commit is contained in:
André Jaenisch 2022-04-30 15:25:09 +02:00
parent a4a06fa32c
commit 3626db3c1a
No known key found for this signature in database
GPG key ID: 5A668E771F1ED854
4 changed files with 15 additions and 0 deletions

View file

@ -1,6 +1,7 @@
""" import classes """
from .importer import Importer
from .calibre_import import CalibreImporter
from .goodreads_import import GoodreadsImporter
from .librarything_import import LibrarythingImporter
from .openlibrary_import import OpenLibraryImporter

View file

@ -0,0 +1,8 @@
""" handle reading a csv from calibre """
from . import Importer
class CalibreImporter(Importer):
"""csv downloads from OpenLibrary"""
service = "Calibre"