ReproFig
ReproFig makes a scientific figure carry the exact comma-separated values
(CSV), statistics, software version, source fingerprints, and reproduction
instructions needed to audit it later. The same reprofig/1 record works in
SVG, PDF, PNG, JPEG, TIFF, WebP, AVIF/HEIF, PowerPoint, Word, Excel, HTML,
HDF5, netCDF-4, FITS, and deterministic ZIP/RO-Crate bundles.
python -m pip install reprofig
ReproFig requires Python 3.10 or newer. The core has no required scientific stack. Install every binary adapter with:
python -m pip install "reprofig[all-formats,matplotlib,pandas]"
Create a master figure
from reprofig import save_figure
save_figure(
figure,
"Figure 1.pdf",
plotted_data=dataframe,
statistics=records,
producer={"package": "my-analysis", "version": "1.4.0"},
figure_profile="master",
)
A master embeds the exact CSV bytes used for the plot. This is the auditable
source of truth and may contain private data or local paths, so do not upload it
without checking it first. Sidecar files are optional and can be regenerated:
from reprofig import extract_artifact, publish_artifacts
extract_artifact("Figure 1.pdf", "Figure 1 extracted")
publish_artifacts(
["Figure 1.pdf", "Figure 2.jpg", "Slides.pptx"],
output_dir="Publication",
figure_profile="public",
safe_columns=["condition", "value"],
)
Integrate another plotting package
Attach the plot meaning before its normal save step:
from reprofig import attach, save_figure
attach(
figure,
plotted_data=analysis_rows,
statistics=statistical_records,
analysis={"independent_unit": "participant"},
column_classification={
"condition": "safe",
"value": "safe",
"participant_id": "private",
},
)
save_figure(
figure,
"Figure.png",
producer={"package": "my-analysis", "package_version": "2.1.0"},
render_preset="line_art",
)
New raster figures default to 300 dots per inch (DPI). Use screen for 150
DPI, continuous_tone for 300 DPI, line_art for 600 DPI, or pass an exact
dpi, width, and height. Existing raster files are never resampled by
embed_file; AVIF/HEIF metadata changes require allow_reencode=True because
the available backend must rebuild those images.
Make publication-safe copies
The public profile retains only explicitly approved columns and source links.
The minimal_public profile retains summary statistics and provenance without
row-level data. Both are one-way derivatives of the master:
reprofig publish Figure.svg Figure.jpg --output-dir Submission \
--profile minimal-public --safe-columns condition,value \
--public-source dataset=https://repository.example/data.csv
The command-line interface also provides formats, inspect, validate,
embed, extract, caption, scan, bundle, and fsb-export. Run
reprofig formats to see optional dependencies and carrier capabilities.
Embedded metadata can be stripped by editors, social platforms, publisher
pipelines, or format conversion. Keep the master. When the delivery route is
unknown, send a .reprofig.zip bundle alongside the visible figure; its fixed
layout and SHA-256 checksums make missing or changed files detectable.
Develop and verify
python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*
Report problems through the GitHub issue tracker.
Please cite ReproFig using the metadata in CITATION.cff.
ReproFig is licensed under the BSD 3-Clause licence.
Release files for reprofig 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| reprofig-0.2.0.tar.gz | 59.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| reprofig-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 136.4 kB
Release files / reprofig-0.2.0.tar.gz
| Download URL | reprofig-0.2.0.tar.gz |
|---|---|
| Size | 59.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e65a08f0a202f25fc1f4f74d7b94a4a03e35d7300f31f74014bc34980bf9cfae
|
|
BLAKE2b-256 checksum How to use checksums |
9b7ed3b5b3ff9e8930817353e9a7521d3521f9719006de13a3918b508b929943
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 25, 2026.
Transparency logRelease files / reprofig-0.2.0-py3-none-any.whl
| Download URL | reprofig-0.2.0-py3-none-any.whl |
|---|---|
| Size | 76.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cbfcb9fe7d004a70c02e949c56e22813cd01986f0e1c77b7f083e4c35744bc03
|
|
BLAKE2b-256 checksum How to use checksums |
2f360b189708bfd6e83d283e4c4c460e6ab1fbd5a3f8705e05c3aeb5ff770084
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 25, 2026.
Transparency log