.coveragerc
.flake8
.gitattributes
.gitignore
.isort.cfg
.pre-commit-config.yaml
.pylintrc
.readthedocs.yml
ARCHITECTURE.rst
AUTHORS.rst
CHANGELOG.rst
CODE_OF_CONDUCT.md
CONTRIBUTING.rst
LICENSE.txt
Makefile
README.rst
mypy.ini
pyproject.toml
setup.cfg
setup.py
.github/FUNDING.yml
.github/dependabot.yml
.github/pull_request_template.md
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/workflows/codeql-analysis.yml
.github/workflows/python-integration.yml
.github/workflows/python-package-daily.yml
.github/workflows/python-package.yml
.github/workflows/python-publish.yml
docs/Makefile
docs/adapters.rst
docs/authors.rst
docs/changelog.rst
docs/conf.py
docs/development.rst
docs/index.rst
docs/install.rst
docs/license.rst
docs/logo.png
docs/postgres.rst
docs/requirements.txt
docs/sqlglot.rst
docs/usage.rst
docs/_static/.gitignore
examples/csvfile.py
examples/dataframe.py
examples/datasette.py
examples/dbt.py
examples/generic_json.py
examples/generic_xml.py
examples/github.py
examples/gsheets.py
examples/postgres.py
examples/preset.py
examples/socrata.py
examples/test.csv
examples/virtual.py
examples/weatherapi.py
postgres/Dockerfile
postgres/docker-compose.yml
postgres/init.sql
requirements/base.in
requirements/base.txt
requirements/test.in
requirements/test.txt
src/shillelagh/__init__.py
src/shillelagh/console.py
src/shillelagh/db.py
src/shillelagh/exceptions.py
src/shillelagh/fields.py
src/shillelagh/filters.py
src/shillelagh/functions.py
src/shillelagh/lib.py
src/shillelagh/py.typed
src/shillelagh/types.py
src/shillelagh/typing.py
src/shillelagh.egg-info/PKG-INFO
src/shillelagh.egg-info/SOURCES.txt
src/shillelagh.egg-info/dependency_links.txt
src/shillelagh.egg-info/entry_points.txt
src/shillelagh.egg-info/not-zip-safe
src/shillelagh.egg-info/requires.txt
src/shillelagh.egg-info/top_level.txt
src/shillelagh/adapters/__init__.py
src/shillelagh/adapters/base.py
src/shillelagh/adapters/registry.py
src/shillelagh/adapters/api/__init__.py
src/shillelagh/adapters/api/datasette.py
src/shillelagh/adapters/api/dbt_metricflow.py
src/shillelagh/adapters/api/generic_json.py
src/shillelagh/adapters/api/generic_xml.py
src/shillelagh/adapters/api/github.py
src/shillelagh/adapters/api/html_table.py
src/shillelagh/adapters/api/preset.py
src/shillelagh/adapters/api/s3select.py
src/shillelagh/adapters/api/socrata.py
src/shillelagh/adapters/api/system.py
src/shillelagh/adapters/api/weatherapi.py
src/shillelagh/adapters/api/gsheets/__init__.py
src/shillelagh/adapters/api/gsheets/adapter.py
src/shillelagh/adapters/api/gsheets/fields.py
src/shillelagh/adapters/api/gsheets/lib.py
src/shillelagh/adapters/api/gsheets/types.py
src/shillelagh/adapters/api/gsheets/typing.py
src/shillelagh/adapters/api/gsheets/parsing/__init__.py
src/shillelagh/adapters/api/gsheets/parsing/base.py
src/shillelagh/adapters/api/gsheets/parsing/date.py
src/shillelagh/adapters/api/gsheets/parsing/number.py
src/shillelagh/adapters/file/__init__.py
src/shillelagh/adapters/file/csvfile.py
src/shillelagh/adapters/memory/__init__.py
src/shillelagh/adapters/memory/holidays.py
src/shillelagh/adapters/memory/pandas.py
src/shillelagh/adapters/memory/virtual.py
src/shillelagh/backends/__init__.py
src/shillelagh/backends/apsw/__init__.py
src/shillelagh/backends/apsw/db.py
src/shillelagh/backends/apsw/vt.py
src/shillelagh/backends/apsw/dialects/__init__.py
src/shillelagh/backends/apsw/dialects/base.py
src/shillelagh/backends/apsw/dialects/gsheets.py
src/shillelagh/backends/apsw/dialects/metricflow.py
src/shillelagh/backends/apsw/dialects/safe.py
src/shillelagh/backends/multicorn/__init__.py
src/shillelagh/backends/multicorn/db.py
src/shillelagh/backends/multicorn/fdw.py
src/shillelagh/backends/multicorn/dialects/__init__.py
src/shillelagh/backends/multicorn/dialects/base.py
src/shillelagh/backends/sqlglot/db.py
src/shillelagh/backends/sqlglot/dialects/base.py