Coverage for mindsdb / integrations / handlers / google_books_handler / __init__.py: 0%
13 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1from mindsdb.integrations.libs.const import HANDLER_TYPE
3from .__about__ import __version__ as version, __description__ as description
5try:
6 from .google_books_handler import GoogleBooksHandler as Handler
7 import_error = None
8except Exception as e:
9 Handler = None
10 import_error = e
12title = 'Google Books'
13name = 'google_books'
14type = HANDLER_TYPE.DATA
15icon_path = 'icon.svg'
17__all__ = [
18 'Handler', 'version', 'name', 'type', 'title', 'description',
19 'import_error', 'icon_path'
20]