Skip to content

datasette/datasette-chronicle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

datasette-chronicle

PyPI Changelog Tests License

Use sqlite-chronicle with tables in Datasette

Installation

Install this plugin in the same environment as Datasette.

datasette install datasette-chronicle

Usage

Once installed, users with the enable-chronicle and disable-chronicle permissions (granted to the root user by default) will have access to new table action menu options for enabling and disabling chronicle tracking for a table.

Tables that have had chronicle tracking enabled will now support a new ?_since=X query string parameter on the table page, which will filter for just rows that have been inserted or updated since the specified chronicle version.

See the sqlite-chronicle documentation for more details on what this is and how it works.

Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:

cd datasette-chronicle
python3 -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest