├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── datasette-explain-screenshot.jpg ├── datasette_explain └── __init__.py ├── pyproject.toml └── tests ├── conftest.py └── test_explain.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/README.md -------------------------------------------------------------------------------- /datasette-explain-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/datasette-explain-screenshot.jpg -------------------------------------------------------------------------------- /datasette_explain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/datasette_explain/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_explain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/datasette-explain/HEAD/tests/test_explain.py --------------------------------------------------------------------------------