Skip to main content

A lightweight dynamic module for automatic HTML reporting

Project description

Pergamos: Dynamic HTML Reporting for Python

Pergamos is a lightweight Python module for automatically generating HTML reports with support for:

  • Markdown rendering 🗙️
  • LaTeX equations using MathJax 💢
  • Syntax-highlighted code blocks 🎨
  • Tables from numpy arrays and pandas DataFrames 📊
  • Static and interactive Matplotlib plots 📈

🚀 Installation

Install via pip:

pip install pergamos

For development:

pip install -e .[dev]

📌 Features

  • 🗙️ Markdown rendering with markdown and pygments
  • 🧬 LaTeX support via MathJax for equations
  • 🎨 Syntax-highlighted code blocks (Python, JS, C++)
  • 📊 Tables from lists, NumPy arrays, and Pandas DataFrames
  • 📈 Plots using Matplotlib (both static & interactive)
  • 📁 Collapsible & Tabbed Containers for better layout

🛠 Usage Examples

1️⃣ Creating an HTML Document

import pergamos as pg

doc = pg.Document("My Report")
doc.append(pg.Text("🚀 My Dynamic Report", tag='h1'))
doc.append(pg.Text("This is a dynamically generated report using Pergamos."))

doc.save("report.html")

🔹 Generates a simple HTML report with a title and text.


2️⃣ Adding Markdown Content

md_text = """
# Markdown Example
This is **bold**, *italic*, and `inline code`.
"""

doc.append(pg.Markdown(md_text))

🔹 Supports headings, bold, italics, and inline code.


3️⃣ Adding a Code Block with Syntax Highlighting

code = """
```python
def hello():
    print("Hello, World!")
\```
"""
doc.append(pg.Markdown(code))

🔹 Renders Python syntax-highlighted inside a styled <pre><code> block.


4️⃣ Rendering LaTeX Equations

doc.append(pg.Latex(r"E = mc^2", inline=True))
doc.append(pg.Latex(r"\int_a^b x^2 \,dx", inline=False))

🔹 Supports inline and block LaTeX equations.


5️⃣ Displaying Tables

import numpy as np
import pandas as pd

array_data = np.random.randint(1, 100, (5, 5))
df = pd.DataFrame(array_data, columns=["A", "B", "C", "D", "E"])

doc.append(pg.Table(array_data))  # Numpy array
doc.append(pg.Table(df))  # Pandas DataFrame

🔹 Supports tables from lists, NumPy, and Pandas.


6️⃣ Adding a Static Plot

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
ax.plot([1, 2, 3, 4], [10, 20, 25, 30])

doc.append(pg.Plot(fig))

🔹 Renders a static Matplotlib plot as an image.


7️⃣ Adding an Interactive Plot

doc.append(pg.InteractivePlot(fig))

🔹 Uses Mpld3 to create interactive zoomable plots.


🏠 Development & Contribution

To contribute:

  1. Clone the repo:
    git clone https://github.com/manuelblancovalentin/pergamos.git
    cd pergamos
    
  2. Install dependencies:
    pip install -e .[dev]
    
  3. Run tests:
    pytest
    
  4. Submit a pull request 🚀

📍 License

This project is licensed under the MIT License.

📌 GitHub Repository: Pergamos

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

pergamos-0.0.4.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

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

pergamos-0.0.4-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file pergamos-0.0.4.tar.gz.

File metadata

  • Download URL: pergamos-0.0.4.tar.gz
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pergamos-0.0.4.tar.gz
Algorithm Hash digest
SHA256 368fba37d456a43516550681491a6097718306d63a14d9e366c7fb48f712072f
MD5 ca53cd06e75c9ea7f4717117a5e04aca
BLAKE2b-256 fa3558d6ba6b41ae90a3a226017fa1102a3ef4d5fdad7226a9331f9c01aca8d0

See more details on using hashes here.

File details

Details for the file pergamos-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: pergamos-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pergamos-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 dec4e8be0ae3f194dd39fff9c32c90d2dc3d127ddf35b96578318ba825d04323
MD5 0098e349b63a3d7c634f5f45b7dde619
BLAKE2b-256 90ebfe813f7521e0d60a8b96f5e0ec59bd54b25baf18125e5738c5bd1e5c0d4f

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