Metadata-Version: 2.1
Name: datasette-granian
Version: 0.1a0
Summary: Run Datasette using the Granian HTTP server
Home-page: https://github.com/simonw/datasette-granian
Author: Simon Willison
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/simonw/datasette-granian/issues
Project-URL: CI, https://github.com/simonw/datasette-granian/actions
Project-URL: Changelog, https://github.com/simonw/datasette-granian/releases
Classifier: Framework :: Datasette
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# datasette-granian

[![PyPI](https://img.shields.io/pypi/v/datasette-granian.svg)](https://pypi.org/project/datasette-granian/)
[![Changelog](https://img.shields.io/github/v/release/simonw/datasette-granian?include_prereleases&label=changelog)](https://github.com/simonw/datasette-granian/releases)
[![Tests](https://github.com/simonw/datasette-granian/workflows/Test/badge.svg)](https://github.com/simonw/datasette-granian/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/datasette-granian/blob/main/LICENSE)

Run Datasette using the Granian HTTP server

## Installation

Install this plugin in the same environment as Datasette.

    datasette install datasette-granian

## Usage

Run `datasette granian ...` instead of `datasette serve ...` - most options should remain the same.

```
% datasette granian fixtures.db content.db --crossdb
[INFO] Starting granian
[INFO] Listening at: 127.0.0.1:8001
[INFO] Booting worker-1 with pid: 92793
[INFO] Started worker-1
[INFO] Started worker-1 runtime-1
```

## Development

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

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

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
