Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kracekumar/datasette-render-local-images
A datasette plugin to render images in the local system
https://github.com/kracekumar/datasette-render-local-images
datasette datasette-plugin datasette-render-local-images render-local-images
Last synced: 20 days ago
JSON representation
A datasette plugin to render images in the local system
- Host: GitHub
- URL: https://github.com/kracekumar/datasette-render-local-images
- Owner: kracekumar
- License: apache-2.0
- Created: 2020-10-17T10:42:06.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-22T04:31:12.000Z (over 1 year ago)
- Last Synced: 2024-09-13T13:38:42.015Z (2 months ago)
- Topics: datasette, datasette-plugin, datasette-render-local-images, render-local-images
- Language: Python
- Homepage:
- Size: 948 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# datasette-render-local-images
[![PyPI](https://img.shields.io/pypi/v/datasette-render-local-images.svg)](https://pypi.org/project/datasette-render-local-images/)
[![Changelog](https://img.shields.io/github/v/release/kracekumar/datasette-render-local-images?include_prereleases&label=changelog)](https://github.com/kracekumar/datasette-render-local-images/releases)
[![Tests](https://github.com/kracekumar/datasette-render-local-images/workflows/Test/badge.svg)](https://github.com/kracekumar/datasette-render-local-images/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/kracekumar/datasette-render-local-images/blob/main/LICENSE)Render local images in the system using datasette plugin
## Installation
Install this plugin in the same environment as Datasette.
$ datasette install datasette-render-local-images
## Usage
Render local system images in the datasette displayed HTML.
The plugin reads the image and adds the base64 encoded data to `src` attribute,
the cell looks like ``By default plugin will figure out image and render with
default height and width of the image.To modify the image size and width, pass the configuration via `metadata.json`
``` python
{
"plugins": {
"datasette-render-local-images": {
"height": 150,
"width": 150
}
}
}
```When the local image path is missing or no image specified in the path,
the plugin will not render the value.**Note**: While running datasette command don't forget to pass the metadata file
using `-m` option like `datasette dataset.db -m metadata.json`.Below screenshoot is from the sample table.
[Sample Screenshoot](https://github.com/kracekumar/datasette-render-local-images/blob/main/sample.png)
![](https://github.com/kracekumar/datasette-render-local-images/blob/main/sample.png)
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd datasette-render-local-images
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