- uppercase ISBN before checking it's a number to account for trailing 'x' - check maybe_isbn for search_identifiers search. Without this we are only searching external connectors, not locally!
6 lines
252 B
Python
6 lines
252 B
Python
""" bring connectors into the namespace """
|
|
from .settings import CONNECTORS
|
|
from .abstract_connector import ConnectorException
|
|
from .abstract_connector import get_data, get_image, maybe_isbn
|
|
|
|
from .connector_manager import search, first_search_result
|