Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonw/datasette-plugin-demos
Some examples plugins for Datasette
https://github.com/simonw/datasette-plugin-demos
Last synced: 28 days ago
JSON representation
Some examples plugins for Datasette
- Host: GitHub
- URL: https://github.com/simonw/datasette-plugin-demos
- Owner: simonw
- Created: 2018-04-15T23:45:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-14T04:12:32.000Z (over 4 years ago)
- Last Synced: 2024-10-06T20:18:44.097Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# datasette-plugin-demos
[![PyPI](https://img.shields.io/pypi/v/datasette-plugin-demos.svg)](https://pypi.org/project/datasette-plugin-demos/)
[![Changelog](https://img.shields.io/github/v/release/simonw/datasette-plugin-demos?label=changelog)](https://github.com/simonw/datasette-plugin-demos/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/datasette-plugin-demos/blob/master/LICENSE)Examples of plugins for Datasette
This repository hosts an example showing how Datasette plugins can be structured and packaged.
## Installation
Install this plugin in the same environment as Datasette.
$ pip install datasette-plugin-demos
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd datasette-plugin-demos
python3 -mvenv venv
source venv/bin/activateOr if you are using `pipenv`:
pipenv shell
Now install the dependencies and tests:
pip install -e '.[test]'
To run the tests:
pytest