bookwyrm-mastodon/bookwyrm/importers/librarything_import.py

11 lines
231 B
Python
Raw Normal View History

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