List & Search
List All DataFrames
Returns a pandas DataFrame with one row per stored entry:
| name | description | tags | created_at | updated_at | current_version | deleted |
|---|---|---|---|---|---|---|
| sales_2024 | Annual sales | finance | 2024-01-10 | 2024-03-05 | 3 | False |
| employees | HR roster | hr | 2024-02-01 | 2024-02-01 | 1 | False |
Results are sorted by updated_at descending (most recently updated first).
Include Soft-Deleted
Raw Records
To get DFRecord objects instead of a DataFrame:
Search
Search across all stored DataFrames by description, tags, or column names:
All criteria are combined with AND — a record must match all provided filters.
Search Parameters
| Parameter | Type | Description |
|---|---|---|
description |
str |
Substring match against description |
tags |
list |
All specified tags must be present |
columns |
list[str] |
All specified column names must exist |
store_path |
Path or str |
Override the default store location |
format |
"pd" or "raw" |
Return as DataFrame or list of DFRecord |
Version History
To see all versions of a specific DataFrame:
Returns a DataFrame with one row per version:
| version | saved_at | notes | shape | row_diff | columns_added | columns_removed |
|---|---|---|---|---|---|---|
| 1 | 2024-01-10 | Initial | (500, 6) | 0 | [] | [] |
| 2 | 2024-02-15 | Add Q1 | (620, 6) | +120 | [] | [] |
| 3 | 2024-03-05 | Add region | (620, 7) | 0 | [region] | [] |