Create self-contained HTML reports from Python.
Project description
Report Creator
Library to assemble reports in HTML from various components using python
Features
- Good pandas/dataframe/table support
- Look modern
- Allows markdown as input for text blocks
- Allows html as input
- A few simple components for things like metrics ("Accuracy: 87%") from a triple of key, value
- Support for plotting figures, interactive
plotly
andmatplotlib
- images (styled by the library)
-
json
/yaml
/python
code blocks with color syntax highlighting - Support tabs
- Add support for any Jupyter widget, any object that renders in a notebook should render to a report
- Add built-in easy plotting that looks stylistically consistent with the report
- Add option to change the report icon based on a github account avatar
- Add a metric type for timeseries data which should some aggregate function of the data, and plot over time.
- Add diagram component with Mermaid JS
- Write some documentation!
- Add a status metric that supports up to a handful of k/v pairs (k=task, v=status)
- Add
yfinance
plots/tables (maybe) - Add Radar chart
- Add choropleth map plot type
- Add bookmark anchors to blocks
- Add a Table of Contents option based on labels of top-level-blocks
- Add styled section for Executive Summary
- Youtube embeds rc.Video(url: str, label: str)
- File attachments (downloadable any data from page)
Example
import report_creator as rc
with rc.ReportCreator("My Report") as report:
view = rc.Block(
rc.Text("""It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of light, it was the season of darkness, it was the spring of hope, it was the winter of despair.""",
label="Charles Dickens, A Tale of Two Cities"),
rc.Group(
rc.Metric(
heading="Answer to Life, The Universe, and Everything",
value="42",
),
rc.Metric(
heading="Author",
value="Douglas Adams",
),
),
rc.Bar(px.data.medals_long(),
x="nation",
y="count",
dimension="medal",
label="Bar Chart - Olympic Medals",
),
rc.Scatter(
px.data.iris(),
x="sepal_width",
y="sepal_length",
dimension="species",
marginal="histogram",
label="Scatter Plot - Iris",
),
)
report.save(view, "report.html")
Development
conda create --name rc python=3.12
conda activate rc
pip install -r requirements.txt -U
# recommended installs for code hygiene
pip install ruff
# build "kitchen_sink" example
make
# install local package
pip install -e .
# see dependency tree
pipdeptree --exclude pip,pipdeptree,setuptools,wheel,twine
Publish
- run
publish.sh
Dev Notes
- 4/18/24 - no breaking changes, all changes should go through standard deprecation policies
- To render math you'll need to
pip install md4mathjax
Docs
pip install sphinx sphinx-autodoc-typehints sphinx-book-theme sphinx_copybutton sphinxcontrib-mermaid --upgrade
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
report_creator-1.0.24.tar.gz
(22.9 kB
view details)
Built Distribution
File details
Details for the file report_creator-1.0.24.tar.gz
.
File metadata
- Download URL: report_creator-1.0.24.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 388367ecf5f4b35b75aeca6585cb6ef2df8b6817a9e2853c54b5aa24b6385ef7 |
|
MD5 | 1745b2cab7e7863cbc96978fb5c83166 |
|
BLAKE2b-256 | f5ae177ef35b5e3646a6c404e418f76c8648362614792084a7dbc5e2c63c533d |
File details
Details for the file report_creator-1.0.24-py3-none-any.whl
.
File metadata
- Download URL: report_creator-1.0.24-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e04386b88234fe0b48de9abfce02b1b33fbf9f801c29b3f6af6ae697db7a384d |
|
MD5 | e1d3ce3966813d80acf1d218567a7101 |
|
BLAKE2b-256 | 904e518a7a898c98c3f88b88e05ecbcb3216dbbfe5e0867a873d0f6bd86d3a86 |