Skip to main content

Add your description here

Project description

pl2html

A fast, secure, and zero-dependency HTML engine for Polars.

pl2html compiles Polars DataFrame and LazyFrame workflows natively into HTML table structures entirely inside the Polars expression engine. By leveraging parallelized Rust memory environments, it bypasses slow Python row loops (.map_elements), making it an incredibly lightweight alternative to styling engines like great_tables or pandas .style.

Features

  • 🚀 Native Polars Performance: Runs entirely inside the Polars expression graph. Streamable and lazy-execution friendly.
  • 🛡️ Injection-Safe by Default: Automatically neutralizes sequential HTML injection vectors using a lookahead-free, native escaping algorithm.
  • 🎨 Advanced Formatting Toolkit: Human-readable display rules for numbers, integers, currencies, percentages, scientific notations, bytes, and booleans running entirely in Rust.
  • ➡️ Multicolumn Support: All formatting and substitution functions accept a single column string or an iterable list of columns automatically.
  • 🌗 Conditional Styling & Color Scales: Native linear interpolation pipelines to generate multi-segment background color heatmaps by value or percentile rank.
  • 🌌 Auto-Contrast Accessibility: Dynamic text foreground switches (#000000 vs #FFFFFF) calculated via WCAG relative luminance algorithms on the fly.
  • 📦 Afraid of Bloat? Zero Dependencies: Cleaned of heavy packages like numpy or matplotlib. It runs entirely on pure Python and Polars.

Installation

pip install pl2html

Quick Start

1. Basic HTML Rendering with Auto-Escaping

By default, pl2html infers datatypes to securely render human-readable tables. Strings are escaped, and integers/floats automatically get localized thousands separators.

import polars as pl
from pl2html import to_html

df = pl.DataFrame(
    {
        'company': ["<script>alert('malicious')</script> Corp", 'Acme Inc.'],
        'revenue': [1420500, -50200],
        'margin': [0.0451, -0.0512],
    }
)

# Compiles safely to a Polars LazyFrame containing the HTML output
html_lazy = to_html(df)

# Collect and extract the compiled string
html_table_string = html_lazy.collect().item()
print(html_table_string)

Output:

company revenue margin
<script>alert('malicious')</script> Corp1,420,5000.045
Acme Inc.-50,200-0.051

2. Rich Data Formatting (Natively Vectorized)

pl2html exposes high-performance formatting expressions designed to prepare columns simultaneously before passing them to to_html. Every function natively supports passing lists of multiple columns at once.

import polars as pl
from pl2html import to_html
from pl2html import formats as fmt

df = pl.DataFrame(
    {
        "asset_a": [5400600, 2100],
        "asset_b": [45100000, -850000],
        "growth": [0.1256, -0.024],
        "is_active": [True, False],
        "status_code": [0, 404]
    }
)

# Format multiple financial asset columns compactly in one pass using lists
df_f = df.with_columns(
    fmt.fmt_integer(["asset_a", "asset_b"], compact=True, compact_system="financial"),
    fmt.fmt_percent("growth", decimals=1),
    fmt.fmt_tf("is_active", tf_style="check-mark"),
    fmt.sub_zero("status_code", zero_text="OK")
)

html = to_html(df_f).collect().item()

3. Advanced Styling via Native Attributes (attrs)

Instead of embedding hacky structural HTML tags in your data, use the attrs parameter to inject dynamic CSS attributes purely. Use data_color or rank_color to construct high-performance heatmaps.

import polars as pl
from pl2html import to_html
from pl2html.styles import data_color, rank_color

df = pl.DataFrame(
    {
        'employee': ['Alice', 'Bob', 'Charlie', 'David'],
        'performance_score': [98.5, 42.0, 81.2, 12.0],
        'utilization': [0.02, 0.41, 0.78, 0.22],
    }
)

styles = {}

# 1. Color Heatmap by Absolute Value (Custom 3-color palette with auto-contrast text)
styles.update(
    data_color(
        column='performance_score',
        palette=['#ff7675', '#fdcb6e', '#00b894'],
        auto_contrast=True
    )
)

# 2. Color Heatmap by Percentile Rank Order (Continuous interpolation)
styles.update(
    rank_color(
        column='utilization',
        palette=['#000000', '#FFFFFF'],
        descending=False,
        auto_contrast=True
    )
)

html_table = to_html(df, attrs=styles).collect().item()

Output (github may override table colors, but they are there):

employee performance_score utilization
Alice98.50.92
Bob42.00.41
Charlie81.20.78
David12.00.22

Architecture & Module Layout

The library is explicitly divided into three decoupled layers:

1. Core Compiler (__init__.py)

Responsible for reading the dataframe schema, iterating horizontally over visible columns, and joining tokens into structural row arrays natively in Rust.

  • Exposed via to_html(df, *, attrs=None, exclude_columns=None).
  • Automatically assigns high-performance format fallbacks:
    • is_integer(): Applies thousands separator reversals.
    • is_float(): Automatically base-truncates decimal positions and breaks layout chunks smoothly.
    • Catchall: Direct pass through _escape_polars_string() to secure against cross-site scripting (XSS).

2. Format Expressions (formats.py)

Contains native string-shaping expression generators wrapped in a @_multicolumn macro to cleanly display large datasets without dropping into slow Python loops.

  • fmt_number() / fmt_integer(): Supports precision rounding, thousands separators, accounting parentheses, and financial/engineering compact suffixing (K, M, B vs k, M, G).
  • fmt_percent() / fmt_currency(): Optimized wrappers handling percentage scaling and currency masking.
  • fmt_scientific(): Natively parses mantissas and exponents with flexible styling (x10n, e, E) and forced signs.
  • fmt_bytes(): Dynamically maps byte magnitudes to decimal (kB, MB) or binary (KiB, MiB) notations.
  • fmt_tf(): Transforms booleans to presets (arrows, check-mark, circles) with native na_val null overrides.
  • sub_missing() / sub_zero(): Clean conditional data substitution expressions for nulls and exact zeros.

3. Style Utilities (styles.py)

Generates structural Polars expression payloads mapped to specific HTML style attributes.

  • data_color(column, palette, domain=None, auto_contrast=True): Evaluates column boundaries (.min() / .max()) at evaluation time and maps row values via piece-wise linear RGB interpolation.
  • rank_color(column, palette, descending=False, auto_contrast=True): Replaces absolute numerical scaling with ordinal percentile ranks to smooth out heavily skewed datasets or extreme outliers.

Every style output returns a clean nested dictionary structure ({column: {attribute: expression}}) to feed directly into to_html(attrs=...).


Security

pl2html passes untrusted data arrays through a strict sequential escaping chain natively in Rust:

.str.replace_all('&', '&amp;')
.str.replace_all('<', '&lt;')
.str.replace_all('>', '&gt;')
.str.replace_all('"', '&quot;')
.str.replace_all("'", '&#x27;')

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

pl2html-0.2.0.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

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

pl2html-0.2.0-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file pl2html-0.2.0.tar.gz.

File metadata

  • Download URL: pl2html-0.2.0.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pl2html-0.2.0.tar.gz
Algorithm Hash digest
SHA256 affb0848e0956e0e3ca08526a694c2a6ab05ca9680cf1e1227c8633dc37a2ac4
MD5 41e0052861f68b84ce00bb1961a9d400
BLAKE2b-256 750211388fe83d917f902e16e6ed187fa2cad5ef9cf872e4832b06c941e5ade7

See more details on using hashes here.

File details

Details for the file pl2html-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pl2html-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 11.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pl2html-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3ce811f1c606633611a7f9d8ca4c8b43f859abbb0bef4a1e3dfac2fcd9cf987b
MD5 29a23840b0c551066f5420884e11bab8
BLAKE2b-256 a71feb15a54e18ffb61167721e944e8de7a28e2093f3e1fa045c75bbe677c4f3

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