Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3f4748c
Add CTable .b2z support: metadata model, fetch pipeline via to_cframe…
FrancescAlted Jun 30, 2026
32947e8
Fix CTable whole-fetch bug, add Array/Table client hierarchy, and .b2…
FrancescAlted Jul 1, 2026
6a45518
Add web preview and CLI support for CTable (.b2z) datasets
FrancescAlted Jul 1, 2026
93d9e81
Harden CTable (.b2z) row slicing, previews, and CLI edge cases
FrancescAlted Jul 1, 2026
ebd52a8
Much cleaner error message for cat2-client on invalid commands
FrancescAlted Jul 1, 2026
86e850a
Much cleaner error message for cat2-client on invalid commands
FrancescAlted Jul 1, 2026
2adefd8
Potential fix for pull request finding
FrancescAlted Jul 1, 2026
6ce34ca
Fix hardcoded suffix set in get_abspath() to use srv_utils.BLOSC2_NAT…
Copilot Jul 1, 2026
e3fc9b3
Potential fix for pull request finding
FrancescAlted Jul 1, 2026
e410ea3
Add test for the table[-1] fix
FrancescAlted Jul 1, 2026
8ee2af2
Support browsing TreeStore .b2z containers via virtual paths
FrancescAlted Jul 1, 2026
4a7e954
Browse hierarchical .b2z (TreeStore) containers and directories
FrancescAlted Jul 1, 2026
af2cce6
Add plan for virtual descent for h5 too
FrancescAlted Jul 1, 2026
04ba213
Add mountable virtual roots for .b2z TreeStore containers in web UI
FrancescAlted Jul 2, 2026
aee01e4
Browse .h5/.hdf5 files as mountable virtual roots
FrancescAlted Jul 2, 2026
4070d91
Report each dataset's own size in the web listing, not the container's
FrancescAlted Jul 2, 2026
2be8746
[WebUI] CTable sorting now works using blosc2's sort_by()
FrancescAlted Jul 3, 2026
004e2b9
[WebUI] Table sorting works with ascending/descending directions now
FrancescAlted Jul 3, 2026
3b9e14a
feat: filter/sort for .b2z TreeStore container members + fix 0d scala…
FrancescAlted Jul 3, 2026
2261a80
feat: sort for .h5 container members + avoid full numpy materialization
FrancescAlted Jul 3, 2026
d93a19f
Different fixes for .b2z and .h5 navigation:
FrancescAlted Jul 3, 2026
454b032
[WebUI] Mouse/touch scroll is supported in Datasets and Display panels
FrancescAlted Jul 3, 2026
6225364
Add click-to-select + arrow-key navigation for datasets and data rows
FrancescAlted Jul 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion caterva2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@

"""Caterva2 - On demand access to remote Blosc2 data repositories"""

from .client import BasicAuth, Client, Dataset, File, Root
from .client import Array, BasicAuth, Client, Dataset, File, Group, Root, Table

__version__ = "2025.12.4.dev0"
"""The version in use of the Caterva2 package."""

__all__ = [
"Array",
"BasicAuth",
"Client",
"Dataset",
"File",
"Group",
"Root",
"Table",
]
"""List of symbols exported by the Caterva2 package."""
Loading
Loading