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.5.tar.gz
(27.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.5.tar.gz.
File metadata
- Download URL: bagelquant_data-0.1.5.tar.gz
- Upload date:
- Size: 27.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 |
4b5692a3cd9f93ea33a18edfa5bdaeb03324ed50e6730f043fa3e89c8f0369c8
|
|
| MD5 |
d3bf73a89524f9ae851c1503f7227fe2
|
|
| BLAKE2b-256 |
bde937311d7be6379025b8e9a4cc92a6d817a48cedbf136c622b01fa58ee6416
|
File details
Details for the file bagelquant_data-0.1.5-py3-none-any.whl.
File metadata
- Download URL: bagelquant_data-0.1.5-py3-none-any.whl
- Upload date:
- Size: 49.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 |
11be1159df568f5eb811e3895c935c07cdaedd70feb223bba566a91590377eac
|
|
| MD5 |
49012dbd5cd8569b9ee9f25c88afe594
|
|
| BLAKE2b-256 |
ec2529351d3aece0a368ec0edfe43e93f3ee952154110ff800a89d415020e4d7
|