moviewyrm/bookwyrm/importers/librarything_import.py

11 lines
231 B
Python
Raw Normal View History

""" handle reading a tsv from librarything """
2021-03-30 15:56:25 +00:00
from . import Importer
2021-02-20 16:02:36 +00:00
class LibrarythingImporter(Importer):
2021-04-26 16:15:42 +00:00
"""csv downloads from librarything"""
2021-03-30 15:43:38 +00:00
2021-03-08 16:49:10 +00:00
service = "LibraryThing"
delimiter = "\t"
encoding = "ISO-8859-1"