Skip to main content

A Dash component library for rendering PDF documents with enhanced features.

Project description

Dash PDF Plus

Display and annotate PDFs in your Dash apps with enhanced features.


Features

  • PDF Display: Render PDF documents directly in your Dash applications
  • Interactive Annotations: Add comments, highlights, and rectangle annotations
  • Navigation Controls: Navigate through PDF pages with built-in controls
  • URL Loading: Load PDFs from URLs or local files
  • Customizable UI: Customize button and control styling

Installation

pip install dash-pdf-plus

Usage

Basic PDF Display

import requests
from dash import Dash, html

import dash_pdf_plus

app = Dash(__name__)

# Download the PDF and read it as bytes
url = "https://css4.pub/2015/textbook/somatosensory.pdf"
response = requests.get(url)
pdf_bytes = response.content

# Alternatively, you can read a local PDF file
# pdf_bytes = Path('path/to/local/file.pdf').read_bytes()

app.layout = html.Div(
    [
        dash_pdf_plus.DashPDF(
            id="pdf-viewer",
            data=pdf_bytes,
            enableAnnotations=True,
            selectedAnnotationTool="none",
            annotations=[],
        ),
    ]
)

if __name__ == "__main__":
    app.run(debug=True)

Advanced Usage with Annotations

The demo application (demo/app.py) showcases advanced features including:

  • Annotation Tools: Comment, rectangle, and highlight tools
  • Interactive Controls: Load PDFs from URLs, navigate pages
  • Real-time Updates: Handle annotation changes with callbacks
  • Responsive Design: Bootstrap-based UI with resizable panels

Key features demonstrated:

  • PDF loading from URLs
  • Annotation tool selection (comment, rectangle, highlight, none)
  • Page navigation controls
  • Annotation change handling
  • Responsive layout with control panel

Run Demo Locally

cd demo
uv venv
uv pip install -r requirements.txt
uv run app.py

Open: http://localhost:8050

Development Setup

# Install JavaScript dependencies
npm install

# Install Python package in editable mode
uv venv
uv pip install -e .

# Install other Python dependencies
uv pip install -r requirements.txt
uv pip install -r tests/requirements.txt

Development Workflow

# Build the component
npm run build

# Run the demo
uv run demo/app.py

Release Process

# Generate distribution files
rm -rf dist
npm run build
uv build

# Test the artifact
uv pip install dash dist/dash_pdf_plus-0.0.3.tar.gz
uv run demo/app.py

# Upload to PyPI
# uv pip install twine
# twine upload dist/*

# Or with UV
uv publish

# Clean up
rm -rf dist

Credits

This project is derived from the original dash-pdf implementation by Ploomber Inc.. We extend our gratitude to the original authors for their foundational work that made this enhanced version possible.

License

See LICENSE file for details.

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

dash_pdf_plus-0.0.3.tar.gz (820.6 kB view details)

Uploaded Source

Built Distribution

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

dash_pdf_plus-0.0.3-py3-none-any.whl (824.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dash_pdf_plus-0.0.3.tar.gz
  • Upload date:
  • Size: 820.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.5

File hashes

Hashes for dash_pdf_plus-0.0.3.tar.gz
Algorithm Hash digest
SHA256 272056aa8370a65ddb3ad4a76fa37c822d74e6874fc4b30d9c4353c5d6fc32bc
MD5 6748b6c3221f9de882dc2ff2a193bd89
BLAKE2b-256 ab6fee2d12d5f76a79cce7924e7b14c7279b3bdcc0ba9754ddace4247315f30b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dash_pdf_plus-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9e21a19f9f989320f05c93090ca8151123f978c4512a0681dd1cd567c5f3fd8c
MD5 74381f140711e94114a499c50a3bb049
BLAKE2b-256 1a168df75bc915248f80f4f31b925b7ca5865e4016b9c4cc1ad6141a39de3cc3

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