Source code for intake_sqlite

"""A template repository for a Python package created by Catalyst Cooperative."""
import logging

import pkg_resources

[docs]__version__: str = pkg_resources.get_distribution("intake-sqlite").version
from intake_sqlite.sqlite_cat import * # noqa: F403,F401 from intake_sqlite.sqlite_src import * # noqa: F403,F401
[docs]__author__ = "Catalyst Cooperative"
[docs]__contact__ = "pudl@catalyst.coop"
[docs]__maintainer__ = "Zane Selvans"
[docs]__maintainer_email__ = "zane.selvans@catalyst.coop"
[docs]__license__ = "MIT License"
[docs]__docformat__ = "restructuredtext en"
[docs]__description__ = "An Intake driver to access local or remote SQLite databases by URL."
[docs]__projecturl__ = "https://github.com/catalyst-cooperative/intake-sqlite"
[docs]__downloadurl__ = "https://github.com/catalyst-cooperative/intake-sqlite"
# Create a root logger for use anywhere within the package.
[docs]logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())