Add Calibre importer for CSV exports
Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
This commit is contained in:
parent
a4a06fa32c
commit
3626db3c1a
4 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
|
|
8
bookwyrm/importers/calibre_import.py
Normal file
8
bookwyrm/importers/calibre_import.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
""" handle reading a csv from calibre """
|
||||
from . import Importer
|
||||
|
||||
|
||||
class CalibreImporter(Importer):
|
||||
"""csv downloads from OpenLibrary"""
|
||||
|
||||
service = "Calibre"
|
Loading…
Add table
Add a link
Reference in a new issue