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: Beta · Train: 0.61.x (published v0.61.0 in-tree and on PyPI) · application pin >=0.61.0,<0.62; repository checkouts use uv sync
Install
pip install "hedron-data>=0.61.0,<0.62"
# or
uv add "hedron-data>=0.61.0,<0.62"
# via flagship:
pip install "hedron[data]>=0.61.0,<0.62"
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.61.0,<0.62"
pip install "hedron-data[sqlalchemy]>=0.61.0,<0.62"
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 0.61.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.61.0.tar.gz | 410.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| hedron_data-0.61.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 830.5 kB
Release files / hedron_data-0.61.0.tar.gz
| Download URL | hedron_data-0.61.0.tar.gz |
|---|---|
| Size | 410.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f96343db155a49a911b89d16ab3cb3a3b06286ae9ed38823ef92fc16a8f6bcb7
|
|
BLAKE2b-256 checksum How to use checksums |
f9582e6cca4f368dd3b007c6ca1dc4a53835a04f69ac247ac407cfe3cc83b7af
|
| 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.61.0-py3-none-any.whl
| Download URL | hedron_data-0.61.0-py3-none-any.whl |
|---|---|
| Size | 420.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
22e46e6ce33e3c7d8b5b037aee27810c810cf42848553bb3c87b2f395d6d930b
|
|
BLAKE2b-256 checksum How to use checksums |
202cf70a69f8edbfc057444da7898cf6bbc1c92a313a6b4094a3bc40307ebfa7
|
| 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}
|