A Datasette plugin for debugging the new actors_from_ids plugin hook.
datasette install datasette-debug-actors-from-ids
Adds a URL at /-/debug-actors-from-ids
. Call it with ?ids=1,3,4
to exercise the plugin hook.
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd datasette-debug-actors-from-ids
python3 -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
```bash
pytest