Skip to content

Commit 9e2ac2c

Browse files
committed
data was hidden in gitignore
1 parent 35e34a9 commit 9e2ac2c

File tree

3 files changed

+444
-1
lines changed

3 files changed

+444
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ secrets/
234234
private/
235235

236236
# Trading/Financial data
237-
data/
238237
logs/
239238
backups/
240239
*.csv

src/project_x_py/data/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""
2+
Data storage and management utilities for the ProjectX SDK.
3+
4+
This module provides efficient data storage solutions including
5+
memory-mapped files for large datasets and time series storage.
6+
"""
7+
8+
from project_x_py.data.mmap_storage import MemoryMappedStorage, TimeSeriesStorage
9+
10+
__all__ = [
11+
"MemoryMappedStorage",
12+
"TimeSeriesStorage",
13+
]

0 commit comments

Comments
 (0)