sqlite-utils now lives at sqlite-utils.datasette.io

This commit is contained in:
Simon Willison 2020-12-29 13:38:53 -08:00
commit 8df116b24c
2 changed files with 3 additions and 3 deletions

View file

@ -60,7 +60,7 @@ Using pytest fixtures
A common pattern for Datasette plugins is to create a fixture which sets up a temporary test database and wraps it in a Datasette instance.
Here's an example that uses the `sqlite-utils library <https://sqlite-utils.readthedocs.io/en/stable/python-api.html>`__ to populate a temporary test database. It also sets the title of that table using a simulated ``metadata.json`` congiguration:
Here's an example that uses the `sqlite-utils library <https://sqlite-utils.datasette.io/en/stable/python-api.html>`__ to populate a temporary test database. It also sets the title of that table using a simulated ``metadata.json`` congiguration:
.. code-block:: python