Skip to main content

A Streamlit component for show IIIF viewers.

Project description

Streamlit IIIF viewer

Supported Python versions License Code style: Black PyPI PyPI - Downloads

Streamlit component for fast viewers integration.

IIIF (International Image Interoperability Framework) is a set of open standards for delivering high-quality images and metadata over the web. It is widely used in digital humanities and by cultural heritage institutions (but not only!) to share, annotate, and study digitized materials.

Currently, this component supports the following IIIF-compliant viewers:

  • Mirador (Apache-2.0 License)
  • Tify (GNU Affero General Public License v3.0)

Features

  • Display IIIF v3 manifests
  • port for document-focused viewer (e.g. Tify) and multi-window scholarly viewer (e.g. Mirador)
  • Accepts either a remote manifest URL or a local JSON object
  • Optional viewers configuration via options (language, theme, default window settings, etc.)
  • Automatically resizes within the Streamlit layout
  • Works seamlessly with Python dict IIIF manifests generated in the app

Installation

pip install streamlit-iiif-viewer

Quickstart

Display a remote manifest

import streamlit as st
from streamlit_iiif_viewer import iiif_viewer

st.title("My IIIF Viewer (remote)")

manifest_url = "https://iiif.io/api/cookbook/recipe/0009-book-1/manifest.json"

iiif_viewer(
    viewer="tify",  # or any IIIF viewers available like "mirador"
    manifest=manifest_url,
    height=800,
    options={"language": "fr"},  # optional viewer configuration
)

Display a local JSON manifest

import streamlit as st
from streamlit_iiif_viewer import iiif_viewer

st.title("My IIIF Viewer (local)")

manifest = {
    "@context": "http://iiif.io/api/presentation/3/context.json",
    "id": "https://example.org/manifest/demo",
    "type": "Manifest",
    "label": {"en": ["Local Demo"]},
    "items": [],
}

iiif_viewer(
    viewer="tify",  # or any IIIF viewers available like "mirador"
    manifest=manifest,
    height=700,
)

Viewer Configuration

You can customize the behavior of each viewer using the options argument. Full configuration guides are available in the official documentation:

[!IMPORTANT]
For now, Mirador plugins like text-overlay or image-tools are not includes.

Tify Example

options = {
    "language": "de",
    "pageLabelFormat": "P (L)",
    "pages": [2, 3],
    "pan": {"x": ".45", "y": " .6"},
    "zoom": "1.2"
}

Mirador Example

options = {
"selectedTheme":"dark",
"language":"fr",
  "workspace": {
    "type": "mosaic"
  },
  "workspaceControlPanel": {
    "enabled": true
  },
  "theme": {
    "palette": {
      "type": "light"
    }
  }
}

Development

[!NOTE] These steps are required for development purposes or to modify the component code only.

  1. Clone this repository:
git clone 
cd streamlit_iiif_viewer
  1. Install the Python dependencies:
# create a virtual environment
python3.11 -m venv .venv
# activate it
. .venv/bin/activate
# install dependencies
pip3 install -r requirements.txt
  1. Install frontend dependencies
cd streamlit_iiif_viewer/frontend
yarn install
npm install mirador # sometimes needed to explicitly install mirador (for build)
  1. Making changes

To make changes, first go to streamlit_iiif_viewer/__init__.py and make sure the variable _RELEASE is set to False. This will make the component use the local version of the frontend code, and not the built project.

Then start the dev server for frontend:

cd streamlit_iiif_viewer/frontend/
yarn dev

this start VITE server at http://localhost:5173/.

Open another terminal and run the Streamlit app to test the component:

cd streamlit_iiif_viewer/
streamlit run __init__.py

References

Specific IIIF References

This template is based on these canvas/example projects:

and streamlit documentation:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit_iiif_viewer-0.0.3.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

streamlit_iiif_viewer-0.0.3-py3-none-any.whl (1.4 MB view details)

Uploaded Python 3

File details

Details for the file streamlit_iiif_viewer-0.0.3.tar.gz.

File metadata

  • Download URL: streamlit_iiif_viewer-0.0.3.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for streamlit_iiif_viewer-0.0.3.tar.gz
Algorithm Hash digest
SHA256 4d6d9f2c0ccc8d2dea0ee623491724e7061d4858675fe097d1987d0e108a2f63
MD5 e65fea475bb1f123f179720c40c08e07
BLAKE2b-256 97c05bc975edffb7930fade4f48b9e556fa633a6107678e8d0035fbd7a8e0160

See more details on using hashes here.

File details

Details for the file streamlit_iiif_viewer-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_iiif_viewer-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e7c884dd32ce20e8ecd3712abbf38b678fdc66f56afc1fa029200627ee29223f
MD5 c2f991aa9f0b048ff59a175c7fe77613
BLAKE2b-256 fea61d19c68d4986ba2cb50fe4f1ac8b50c59dd526796b8ced81c060cb35ad34

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page