Skip to main content

Lightweight Python tools for generating PRISMA-style flow diagrams without system dependencies.

Project description

prisma-flow

CI Python Versions Package Version License

prisma-flow is a lightweight Python package for generating PRISMA-style flow diagrams for evidence synthesis workflows.

PRISMA means Preferred Reporting Items for Systematic reviews and Meta-Analyses. prisma-flow is an independent Python implementation for generating diagrams based on PRISMA 2020 flow diagram structures; it is not the PRISMA reporting guideline itself and is not affiliated with or endorsed by the PRISMA Executive.

Unlike Graphviz-based tools, prisma-flow does not require system-level graph layout binaries. Unlike Mermaid-based tools, it does not require Node or Mermaid CLI. The default renderer is a pure-Python, template-based SVG generator.

The project is designed for systematic reviews, scoping reviews, evidence syntheses, and literature review workflows.

Features

  • Pure-Python SVG rendering by default
  • Standalone HTML export
  • Mermaid text export without Mermaid CLI
  • JSON input/output in the base install
  • Optional YAML input/output via prisma-flow[yaml]
  • Optional Jupyter widget UI via prisma-flow[ui]
  • PNG export through the bundled resvg Python dependency
  • Inline SVG display in notebook frontends
  • Python API and prisma-flow command-line interface
  • PRISMA count validation with errors and warnings

Installation

pip install prisma-flow

Optional YAML support:

pip install "prisma-flow[yaml]"

Optional Jupyter widget support:

pip install "prisma-flow[ui]"

Python API

from prismaflow import new_review

flow = new_review(
    records_identified_databases=1240,
    records_identified_registers=50,
    records_removed_duplicates=210,
    records_removed_automation=0,
    records_removed_other=0,
    records_screened=1080,
    records_excluded=950,
    reports_sought=130,
    reports_not_retrieved=10,
    reports_assessed=120,
    reports_excluded={
        "Wrong population": 30,
        "Wrong intervention": 20,
        "Wrong outcome": 15,
        "Not primary research": 15,
    },
    studies_included=40,
    reports_included=40,
)

report = flow.validate()
print(report.format_text())

flow.to_svg("prisma.svg")
flow.to_html("prisma.html")
flow.to_mermaid("prisma.mmd")
flow.to_json("review.json")

Jupyter widget UI

Install the optional UI extra, then call load() in a notebook cell:

from prismaflow.ui import load

load(
    records_identified_databases=1240,
    records_identified_registers=50,
    records_removed_duplicates=210,
    records_removed_automation=0,
    records_removed_other=0,
    records_screened=1080,
    records_excluded=950,
    reports_sought=130,
    reports_not_retrieved=10,
    reports_assessed=120,
    reports_excluded={"Wrong population": 30},
    studies_included=70,
)

The widget can generate an inline SVG preview and save SVG or PNG files.

CLI usage

Validate input data:

prisma-flow validate examples/basic_new_review.json

Render SVG:

prisma-flow render examples/basic_new_review.json -o prisma.svg

Render other base-install formats:

prisma-flow render examples/basic_new_review.json --format html -o prisma.html
prisma-flow render examples/basic_new_review.json --format mermaid -o prisma.mmd
prisma-flow render examples/basic_new_review.json --format png -o prisma.png

If validation fails, the CLI prints a report and exits with a non-zero status:

Validation failed:
- records_screened should equal identified records minus removed records. Expected: 1080 Found: 1090

Data model

The implementation supports PRISMA 2020 new-review databases/registers fields, with optional other-method fields for expanded SVG diagrams:

from prismaflow import (
    EligibilityStage,
    IdentificationStage,
    IncludedStage,
    PrismaFlow,
    PrismaTemplate,
    ScreeningStage,
)

flow = PrismaFlow(
    template=PrismaTemplate.PRISMA_2020_NEW_DATABASES_REGISTERS,
    identification=IdentificationStage(
        records_identified_databases=1240,
        records_identified_registers=50,
    ),
    screening=ScreeningStage(
        records_removed_duplicates=210,
        records_removed_automation=0,
        records_removed_other=0,
        records_screened=1080,
        records_excluded=950,
    ),
    eligibility=EligibilityStage(
        reports_sought=130,
        reports_not_retrieved=10,
        reports_assessed=120,
        reports_excluded={"Wrong population": 30},
        other_sought_reports=0,
        other_notretrieved_reports=0,
        other_assessed=0,
    ),
    included=IncludedStage(studies_included=40, reports_included=90),
)

Dependency policy

SVG, HTML, Mermaid, PNG, and JSON work with the base install. YAML and Jupyter widget support are optional. PNG rasterization uses the pip-installable resvg Python package; no Graphviz, Cairo, browser engine, or Node-based renderer is required.

If PNG text is missing in a minimal notebook image such as Google Colab, install a font package before rendering:

apt-get update && apt-get install -y fonts-dejavu-core

The package does not require Graphviz, Cairo, CairoSVG, Node, Mermaid CLI, Inkscape, Playwright, browser engines, Matplotlib, or Plotly.

PRISMA acknowledgement and citation

If prisma-flow helps produce diagrams or serialized flow data for your work, it is appropriate to cite the software as well as the PRISMA guideline. Citation metadata for prisma-flow is provided in CITATION.cff; please cite the version you used.

Suggested wording:

PRISMA flow diagrams were generated with prisma-flow and reported according to
the PRISMA 2020 statement.

The PRISMA 2020 reporting guideline, checklist, and flow diagram templates were developed by the PRISMA 2020 authors and are maintained through the PRISMA Executive. When using PRISMA-style diagrams in reports, manuscripts, or presentations, cite the original PRISMA 2020 publications in addition to any software citation:

  • Page MJ, McKenzie JE, Bossuyt PM, Boutron I, Hoffmann TC, Mulrow CD, et al. The PRISMA 2020 statement: an updated guideline for reporting systematic reviews. BMJ. 2021;372:n71. doi: 10.1136/bmj.n71.
  • Page MJ, Moher D, Bossuyt PM, Boutron I, Hoffmann TC, Mulrow CD, et al. PRISMA 2020 explanation and elaboration: updated guidance and exemplars for reporting systematic reviews. BMJ. 2021;372:n160. doi: 10.1136/bmj.n160.

See the official PRISMA website and PRISMA 2020 flow diagram page for source templates and usage guidance.

Development

conda env create -f conda/dev.yaml
conda activate prismaflow
poetry config virtualenvs.create false
poetry install --extras "dev yaml"

Run the same workflow through Makim:

makim tests.linter
makim tests.unit
makim package.build
makim docs.build
makim all.ci

Documentation

The documentation site is built with Quarto:

quarto render docs

Preview locally:

quarto preview docs

License

BSD-3-Clause.

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

prisma_flow-0.6.0.tar.gz (31.3 kB view details)

Uploaded Source

Built Distribution

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

prisma_flow-0.6.0-py3-none-any.whl (37.8 kB view details)

Uploaded Python 3

File details

Details for the file prisma_flow-0.6.0.tar.gz.

File metadata

  • Download URL: prisma_flow-0.6.0.tar.gz
  • Upload date:
  • Size: 31.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.13.13 Linux/6.17.0-1015-azure

File hashes

Hashes for prisma_flow-0.6.0.tar.gz
Algorithm Hash digest
SHA256 1b53b309ce57576c2fead623bac3f4f565b618192bb0fb4e25e584e91f00b6cd
MD5 7a758c8e0b3e85407d64502e613567cb
BLAKE2b-256 8c2695bd1064d814f83f11958e2587523e3894237568b306a236a678be2582e4

See more details on using hashes here.

File details

Details for the file prisma_flow-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: prisma_flow-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 37.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.13.13 Linux/6.17.0-1015-azure

File hashes

Hashes for prisma_flow-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e6f7d3943c805ebb2b56479d3720099ef6f8f46f9770068461092d019c22f94c
MD5 40fb18329c2a14d5fd279046abe1931a
BLAKE2b-256 eac26bfc25c98d0f61e760817ce30d0aa9219b7a76d8eb744c1fc455890cbd16

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