Adds generalized book data connectors
This commit is contained in:
11
fedireads/books_manager.py
Normal file
11
fedireads/books_manager.py
Normal file
@ -0,0 +1,11 @@
|
||||
''' select and call a connector for whatever book task needs doing '''
|
||||
from fedireads.connectors import OpenLibraryConnector
|
||||
|
||||
openlibrary = OpenLibraryConnector()
|
||||
def get_or_create_book(key):
|
||||
''' pull up a book record by whatever means possible '''
|
||||
return openlibrary.get_or_create_book(key)
|
||||
|
||||
def search(query):
|
||||
''' ya '''
|
||||
return openlibrary.search(query)
|
Reference in New Issue
Block a user