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.38.x (last published 0.38.0) · pin >=0.38.0,<0.39
Install
pip install "hedron-data>=0.38.0,<0.39"
# or
uv add "hedron-data>=0.38.0,<0.39"
# via flagship:
pip install "hedron[data]>=0.38.0,<0.39"
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.38.0,<0.39"
pip install "hedron-data[sqlalchemy]>=0.38.0,<0.39"
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.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hedron_data-0.38.0.tar.gz.
File metadata
- Download URL: hedron_data-0.38.0.tar.gz
- Upload date:
- Size: 389.2 kB
- Tags: Source
- Uploaded using 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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce56a3df6a08f0b7debdbc4748e8048ba40940406f26a41d89b88d553c3e7258
|
|
| MD5 |
7bdb15db6598b0f54954978dbdc17411
|
|
| BLAKE2b-256 |
cf24ef2ac9eae782b249ab7a706eb7dafb29b408c7fda0ab464a20b5a5d7cc86
|
File details
Details for the file hedron_data-0.38.0-py3-none-any.whl.
File metadata
- Download URL: hedron_data-0.38.0-py3-none-any.whl
- Upload date:
- Size: 401.4 kB
- Tags: Python 3
- Uploaded using 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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdf388fca0a40cab61b8d7070927a548ffaf0e5ff9812eaf04f9046014b485ca
|
|
| MD5 |
8795752c8a07abf46e03fb5380bd2691
|
|
| BLAKE2b-256 |
36feb5a691dd8bf988e3a1ecac2070117d7b63319498e62aee7b4ed5431111a0
|