Skip to content

datasette/datasette-metadata-editable

Repository files navigation

datasette-metadata-editable

PyPI Changelog Tests License

A Datasette plugin for editing metadata on-the-fly. Work in progress.

Installation

Install this plugin in the same environment as Datasette.

datasette install datasette-metadata-editable

Usage

Usage instructions go here.

Development

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

cd datasette-metadata-editable
python3 -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest