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.43.x (published v0.43.0) · pin >=0.43.0,<0.44
Install
pip install "hedron-data>=0.43.0,<0.44"
# or
uv add "hedron-data>=0.43.0,<0.44"
# via flagship:
pip install "hedron[data]>=0.43.0,<0.44"
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.43.0,<0.44"
pip install "hedron-data[sqlalchemy]>=0.43.0,<0.44"
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.43.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.43.0.tar.gz | 398.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| hedron_data-0.43.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 808.8 kB
Release files / hedron_data-0.43.0.tar.gz
| Download URL | hedron_data-0.43.0.tar.gz |
|---|---|
| Size | 398.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4c75938299947f44171549abf9b99e5b885c9d91c01f58130bf3edbd5f664a7d
|
|
BLAKE2b-256 checksum How to use checksums |
6337511a8636315f637374ecf63e0cb92c78bc71f4df4dec10c85287c42fdd91
|
| 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.43.0-py3-none-any.whl
| Download URL | hedron_data-0.43.0-py3-none-any.whl |
|---|---|
| Size | 410.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a8e0dd6dcfe477156be9a36f4d8a2f0bd7740d4fa32c2add9811dd18a5ae0f06
|
|
BLAKE2b-256 checksum How to use checksums |
c59741cf286a236129acf8a20d76a907a38e802a5f34954078549674a95ba1d3
|
| 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}
|