Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/datasette/datasette-proxy-url
Proxy a URL through a Datasette instance
https://github.com/datasette/datasette-proxy-url
Last synced: about 2 months ago
JSON representation
Proxy a URL through a Datasette instance
- Host: GitHub
- URL: https://github.com/datasette/datasette-proxy-url
- Owner: datasette
- License: apache-2.0
- Created: 2024-01-23T20:19:30.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-23T20:34:46.000Z (12 months ago)
- Last Synced: 2024-04-24T13:55:39.108Z (9 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# datasette-proxy-url
[![PyPI](https://img.shields.io/pypi/v/datasette-proxy-url.svg)](https://pypi.org/project/datasette-proxy-url/)
[![Changelog](https://img.shields.io/github/v/release/datasette/datasette-proxy-url?include_prereleases&label=changelog)](https://github.com/datasette/datasette-proxy-url/releases)
[![Tests](https://github.com/datasette/datasette-proxy-url/actions/workflows/test.yml/badge.svg)](https://github.com/datasette/datasette-proxy-url/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/datasette/datasette-proxy-url/blob/main/LICENSE)Proxy a URL through a Datasette instance
## Installation
Install this plugin in the same environment as Datasette.
```bash
datasette install datasette-proxy-url
```
## UsageThis plugin can be configured to set specific paths within Datasette to proxy content from another URL.
Configure the plugin like this:
```json
{
"plugins": {
"datasette-proxy-url": {
"paths": [
{"path": "/proxy", "backend": "http://example.com/"},
]
}
}
}
```
Now any request to `/proxy` will serve the HTML content from `http://example.com/`.The `content-type` response header and the content body will be passed through. All other headers are currently ignored.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd datasette-proxy-url
python3 -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```