Metadata-Version: 2.1
Name: datasette-remote-metadata
Version: 0.2a0
Summary: Periodically refresh Datasette metadata from a remote URL
Home-page: https://github.com/simonw/datasette-remote-metadata
Author: Simon Willison
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/simonw/datasette-remote-metadata/issues
Project-URL: CI, https://github.com/simonw/datasette-remote-metadata/actions
Project-URL: Changelog, https://github.com/simonw/datasette-remote-metadata/releases
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: datasette>=1.0a14
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"
Requires-Dist: pytest-httpx; extra == "test"

# datasette-remote-metadata

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

Periodically refresh Datasette metadata from a remote URL

## Installation

Install this plugin in the same environment as Datasette.

```bash
datasette install datasette-remote-metadata
```
The alpha version of this plugin requires [Datasette 1.0a14](https://docs.datasette.io/en/1.0a14/changelog.html#a14-2024-08-05) or higher.

## Usage

Add the following to your `datasette.yml`:

```yaml
plugins:
  datasette-remote-metadata:
    url: "https://example.com/remote-metadata.yml"
```

Then start Datasette like this:
```bash
datasette mydatabase.db -c datasette.yml
```

The plugin will fetch the specified metadata  from that URL at startup and combine it with any existing metadata. You can use a URL to either a JSON file or a YAML file.

It will periodically refresh that metadata - by default every 30 seconds, unless you specify an alternative `"ttl"` value in the plugin configuration.

You can also use the `datasette -s` option to configure the plugin without a configuration file:
```bash
datasette \
  -s plugins.datasette-remote-metadata.url 'https://example.com/remote-metadata.yml' \
  -s plugins.datasette-remote-metadata.ttl 2 \
  mydatabase.db
```
## Configuration

Available configuration options are as follows:

- `"url"` - the URL to retrieve remote metadata from. Can link to a JSON or a YAML file.
- `"ttl"` - integer value in secords: how frequently should the script check for fresh metadata. Defaults to 30 seconds.
- `"headers"` - a dictionary of additional request headers to send.
- `"cachebust"` - if true, a random `?0.29508` value will be added to the query string of the remote metadata to bust any intermediary caches.

This example `datasette.yml` configuration refreshes every 10 seconds, uses cache busting and sends an `Authorization: Bearer xyz` header with the request:

```yaml
plugins:
  datasette-remote-metadata:
    url: "https://example.com/remote-metadata.yml"
    ttl: 10
    cachebust: true
    headers:
      Authorization: "Bearer xyz"
```
This example if you are using `datasette.json` for configuration:
```json
{
  "plugins": {
    "datasette-remote-metadata": {
      "url": "https://example.com/remote-metadata.yml",
      "ttl": 10,
      "cachebust": true,
      "headers": {
        "Authorization": "Bearer xyz"
      }
    }
  }
}
```

## Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd datasette-remote-metadata
python3 -mvenv venv
source venv/bin/activate
```
Or if you are using `pipenv`:
```bash
pipenv shell
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```
