Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/redraw/datasette-proxy-image-tags
Datasette plugin to proxy and render blocked cross-origin image tags
https://github.com/redraw/datasette-proxy-image-tags
datasette datasette-plugin
Last synced: about 1 month ago
JSON representation
Datasette plugin to proxy and render blocked cross-origin image tags
- Host: GitHub
- URL: https://github.com/redraw/datasette-proxy-image-tags
- Owner: redraw
- License: apache-2.0
- Created: 2023-08-31T23:41:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-01T00:20:45.000Z (over 1 year ago)
- Last Synced: 2024-11-24T17:34:12.990Z (about 2 months ago)
- Topics: datasette, datasette-plugin
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# datasette-proxy-image-tags
[![PyPI](https://img.shields.io/pypi/v/datasette-proxy-image-tags.svg)](https://pypi.org/project/datasette-proxy-image-tags/)
[![Changelog](https://img.shields.io/github/v/release/redraw/datasette-proxy-image-tags?include_prereleases&label=changelog)](https://github.com/redraw/datasette-proxy-image-tags/releases)
[![Tests](https://github.com/redraw/datasette-proxy-image-tags/workflows/Test/badge.svg)](https://github.com/redraw/datasette-proxy-image-tags/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/redraw/datasette-proxy-image-tags/blob/main/LICENSE)## Installation
Install this plugin in the same environment as Datasette.
datasette install datasette-proxy-image-tags
## Usage
Usage instructions go here.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd datasette-proxy-image-tags
python3 -m venv venv
source venv/bin/activateNow install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest