hedron-data
DataTable, DataEditor, and data-source toolkit for Hedron.
Typed data-source protocols, optional dataframe normalization, and a
Tabulator-backed grid Web Component — registered through the public Hedron
plugin contract. Install as hedron-data or via the flagship extra hedron[data].
Package maturity: Beta · Train: 0.59.x (published v0.58.0 on PyPI) · application pin >=0.58.0,<0.60; repository checkouts use uv sync
Install
pip install "hedron-data>=0.58.0,<0.60"
# or
uv add "hedron-data>=0.58.0,<0.60"
# via flagship:
pip install "hedron[data]>=0.58.0,<0.60"
Requires Python 3.11–3.14 and hedron-core.
Optional extras
| Extra | Purpose |
|---|---|
dataframes |
pandas + polars + pyarrow (+ narwhals) |
pandas / polars / pyarrow |
Individual dataframe stacks |
sqlalchemy / sqlmodel |
ORM-backed sources |
dask |
Dask dataframe support |
snowflake |
Snowflake connector |
aggrid / spreadsheet |
Reserved feature gates (no heavy deps) |
pip install "hedron-data[dataframes]>=0.58.0,<0.60"
pip install "hedron-data[sqlalchemy]>=0.58.0,<0.60"
Quick start
from hedron_data import DataTable
rows = [
{"name": "Ada", "team": "Platform"},
{"name": "Grace", "team": "Compiler"},
]
table = DataTable(rows, caption="Employees", page_size=25)
Use inside a Hedron Page (FastAPI / Flask / Django). Prefer a typed
row_model when you want validated columns:
from pydantic import BaseModel
from hedron_data import DataTable
class EmployeeRow(BaseModel):
name: str
team: str
table = DataTable(rows, row_model=EmployeeRow, caption="Employees")
What this package includes
DataTable— paginated, sortable grid with HTMX-friendly refreshDataEditor— editable grid workflows- Typed
DataSourceprotocols and dataframe normalization helpers - Tabulator-backed Web Component assets (plugin-registered)
Links
License
MIT. See the repository license.
Release files for hedron-data 0.59.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 | |
|---|---|---|---|
| hedron_data-0.59.0.tar.gz | 409.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| hedron_data-0.59.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 829.5 kB
Release files / hedron_data-0.59.0.tar.gz
| Download URL | hedron_data-0.59.0.tar.gz |
|---|---|
| Size | 409.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c0a7bb19b31ed5ae74186414ded6603841bf219b3d327a5e6ab1e79751533b90
|
|
BLAKE2b-256 checksum How to use checksums |
8be386f60d8feb9604df8f710684c57e69579ac0770f4c46bee86f82591cbc09
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / hedron_data-0.59.0-py3-none-any.whl
| Download URL | hedron_data-0.59.0-py3-none-any.whl |
|---|---|
| Size | 420.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5b176462fa0f6dbd7edfb2faf9088c8beeb32c966e1aa3047f5456ead21f996e
|
|
BLAKE2b-256 checksum How to use checksums |
a779e72fee47c160044bba0044120ce7df55fd482248024ff58d356800ebf8fe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|