bookwyrm-mastodon/bookwyrm/importers/librarything_import.py

11 lines
231 B
Python

""" handle reading a tsv from librarything """
from . import Importer
class LibrarythingImporter(Importer):
"""csv downloads from librarything"""
service = "LibraryThing"
delimiter = "\t"
encoding = "ISO-8859-1"