├── .flake8 ├── .github └── workflows │ └── ci-cd.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── datasette_ml ├── __init__.py └── py.typed ├── demo ├── generate.py ├── metadata.yml ├── samples.sql └── sqml.db ├── poetry.lock ├── pyproject.toml ├── renovate.json └── tests ├── __init__.py ├── conftest.py └── test_plugin.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203,E501 -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/README.md -------------------------------------------------------------------------------- /datasette_ml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/datasette_ml/__init__.py -------------------------------------------------------------------------------- /datasette_ml/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/demo/generate.py -------------------------------------------------------------------------------- /demo/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/demo/metadata.yml -------------------------------------------------------------------------------- /demo/samples.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/demo/samples.sql -------------------------------------------------------------------------------- /demo/sqml.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/demo/sqml.db -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rclement/datasette-ml/HEAD/tests/test_plugin.py --------------------------------------------------------------------------------