Print Datasette events to standard error
Install this plugin in the same environment as Datasette.
datasette install datasette-debug-events
Once installed, any events fired by the Datasette events mechanism (introduced in Datasette 1.0a8) will be sent to standard error and should display in your terminal.
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd datasette-debug-events
python -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
python -m pytest