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

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"