hedron-data
DataTable, DataEditor, and data-source toolkit for Hedron.
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: Stable · Package line: 1.0.x
Install
pip install "hedron-data>=1.0.0"
# or
uv add "hedron-data>=1.0.0"
# via flagship:
pip install "hedron[data]>=1.0.0"
Requires Python 3.10–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]>=1.0.0"
pip install "hedron-data[sqlalchemy]>=1.0.0"
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 validated
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 workflowsDataSourceprotocols and dataframe normalization helpers- Tabulator-backed Web Component assets (plugin-registered)
Links
License
MIT. See the repository license.
Release files for hedron-data 1.0.14
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-1.0.14.tar.gz | 415.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| hedron_data-1.0.14-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 842.1 kB
Release files / hedron_data-1.0.14.tar.gz
| Download URL | hedron_data-1.0.14.tar.gz |
|---|---|
| Size | 415.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c31e6bcf1b6c4baf9f02eb34931fa77cb8d81a8c686a9e855f97ce75e582cc62
|
|
BLAKE2b-256 checksum How to use checksums |
0c9ab8dad1f74c8ccaaff6e2a4007830a5d584131990d44a910c94bd89ba77ca
|
| 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-1.0.14-py3-none-any.whl
| Download URL | hedron_data-1.0.14-py3-none-any.whl |
|---|---|
| Size | 426.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c1878b73136d4b146248bdcab2a82bc2fa930195b1ea5d5902003c90418a594e
|
|
BLAKE2b-256 checksum How to use checksums |
8b91cd94d93afda32a29c4f6f4e16d98091156ff604418dd917419d89a2348f2
|
| 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}
|