Unified data layer for the BagelQuant ecosystem
Project description
BagelQuant Data
bagelquant-data is a Polars-native, source-agnostic data lake framework for
quantitative research.
- Polars is the dataframe engine.
- Parquet is the canonical analytical storage format.
- SQLite stores mutable metadata, manifests, run state, and source/dataset registration.
- Tushare is implemented as the first source adapter under
bagelquant_data.sources.tushare. - Non-reference research extraction returns one field at a time as
time | asset_id | value.
import polars as pl
from bagelquant_data import DataLake, DatasetSpec
lake = DataLake.open("data")
spec = DatasetSpec(
name="daily",
source="custom",
source_dataset="daily",
category="market",
field_mapping={"ts_code": "ts_code", "trade_date": "trade_date"},
required_columns=("asset_id", "time"),
primary_key=("asset_id", "time"),
asset_column="ts_code",
time_column="trade_date",
partition_strategy="year_month",
deduplication="primary_key_last",
sort_columns=("time", "asset_id"),
)
lake.ingest_frame(
spec,
pl.DataFrame(
{
"trade_date": ["2024-01-02"],
"ts_code": ["000001.SZ"],
"close": [100.0],
}
),
)
close = lake.query.field("daily", "close", source="custom", collect=True)
print(close) # time, asset_id, close
Documentation is available in two languages:
- English:
docs/en/index.md - Chinese:
docs/cn/index.md
Development
uv run pytest
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bagelquant_data-0.1.1.tar.gz
(25.7 kB
view details)
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 bagelquant_data-0.1.1.tar.gz.
File metadata
- Download URL: bagelquant_data-0.1.1.tar.gz
- Upload date:
- Size: 25.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c13710b0cc421fbf6a1a2168f614558232017ff2fdcc404de6cf006c75493fe2
|
|
| MD5 |
bc9bf15d14576677860497e5dbb3d5b9
|
|
| BLAKE2b-256 |
2e529e7b9e072ff0358360c3e1ddc2641be4099a3c5e80d68260b13db0752895
|
File details
Details for the file bagelquant_data-0.1.1-py3-none-any.whl.
File metadata
- Download URL: bagelquant_data-0.1.1-py3-none-any.whl
- Upload date:
- Size: 46.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85574e023d794a4eafaf9b380304c3487674a9a5613bade0d783a815ccdbd9eb
|
|
| MD5 |
d1e9d13166d4e2184a522645132b127b
|
|
| BLAKE2b-256 |
703ae1e641c955e449f9dd2f59a6e2d3723b57ddf1b6628941c687bbb222919b
|