chronos-lab 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,207 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ .idea/
177
+
178
+ # Abstra
179
+ # Abstra is an AI-powered process automation framework.
180
+ # Ignore directories containing user credentials, local state, and settings.
181
+ # Learn more at https://abstra.io/docs
182
+ .abstra/
183
+
184
+ # Visual Studio Code
185
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188
+ # you could uncomment the following to ignore the entire vscode folder
189
+ # .vscode/
190
+
191
+ # Ruff stuff:
192
+ .ruff_cache/
193
+
194
+ # PyPI configuration file
195
+ .pypirc
196
+
197
+ # Cursor
198
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
199
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
200
+ # refer to https://docs.cursor.com/context/ignore-files
201
+ .cursorignore
202
+ .cursorindexingignore
203
+
204
+ # Marimo
205
+ marimo/_static/
206
+ marimo/_lsp/
207
+ __marimo__/
@@ -0,0 +1,30 @@
1
+ # Use uv's ARM64 Python base image
2
+ FROM --platform=linux/arm64 ubuntu:25.04
3
+
4
+ WORKDIR /app
5
+
6
+ RUN apt-get update && apt-get install -y \
7
+ python3 \
8
+ python3-venv \
9
+ curl \
10
+ && rm -rf /var/lib/apt/lists/*
11
+
12
+ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
13
+
14
+ WORKDIR /app
15
+
16
+ # Copy uv files
17
+ COPY pyproject.toml uv.lock ./
18
+ COPY dist/ ./dist/
19
+
20
+ # Install dependencies
21
+ RUN uv sync --frozen --no-dev --no-cache
22
+
23
+ # Copy agent module
24
+ COPY chronos_lab/ ./chronos_lab/
25
+
26
+ # Expose port
27
+ EXPOSE 8000
28
+
29
+ # Run application
30
+ CMD ["uv", "run", "python3", "-m", "chronos_lab.mcp_server"]
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 vitaliknet
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,255 @@
1
+ Metadata-Version: 2.4
2
+ Name: chronos-lab
3
+ Version: 0.1.0
4
+ Summary: Time series research laboratory
5
+ Project-URL: Homepage, https://github.com/vitaliknet/chronos-lab
6
+ Author-email: Vitaly Kuznetsov <chronos-lab@vitalik.net>
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Classifier: Intended Audience :: Financial and Insurance Industry
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Topic :: Office/Business :: Financial :: Investment
14
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
15
+ Requires-Python: >=3.12
16
+ Requires-Dist: numpy>=2.3.1
17
+ Requires-Dist: pandas>=2.3.1
18
+ Requires-Dist: pydantic-settings>=2.12.0
19
+ Provides-Extra: arcticdb
20
+ Requires-Dist: arcticdb; extra == 'arcticdb'
21
+ Provides-Extra: intrinio
22
+ Requires-Dist: intrinio-sdk>=6.39.0; extra == 'intrinio'
23
+ Provides-Extra: mcp
24
+ Requires-Dist: fastmcp>=2.14.2; extra == 'mcp'
25
+ Provides-Extra: yfinance
26
+ Requires-Dist: yfinance>=1.0; extra == 'yfinance'
27
+ Description-Content-Type: text/markdown
28
+
29
+ # chronos-lab
30
+
31
+ A lightweight Python library for time series analysis with a modular architecture. Install only what you need—from minimal data fetching to full-featured storage and MCP server capabilities.
32
+
33
+ ## Installation
34
+
35
+ chronos-lab requires Python 3.13+ and runs on macOS and Linux.
36
+
37
+ ### Core Installation
38
+
39
+ Install the minimal package with just NumPy, pandas, and Pydantic:
40
+
41
+ ```bash
42
+ uv pip install chronos-lab
43
+ ```
44
+
45
+ or with pip:
46
+
47
+ ```bash
48
+ pip install chronos-lab
49
+ ```
50
+
51
+ ### Installation with Extras
52
+
53
+ chronos-lab follows a modular design—install additional features as needed:
54
+
55
+ #### Data Sources
56
+
57
+ ```bash
58
+ # Yahoo Finance for quick market data analysis
59
+ uv pip install chronos-lab[yfinance]
60
+
61
+ # Intrinio for professional financial data
62
+ uv pip install chronos-lab[intrinio]
63
+ ```
64
+
65
+ #### Storage & Infrastructure
66
+
67
+ ```bash
68
+ # ArcticDB for high-performance time series storage
69
+ uv pip install chronos-lab[arcticdb]
70
+
71
+ # MCP server capabilities
72
+ uv pip install chronos-lab[mcp]
73
+ ```
74
+
75
+ #### Combined Installations
76
+
77
+ ```bash
78
+ # Simple use case: yfinance for on-the-fly analysis
79
+ uv pip install chronos-lab[yfinance]
80
+
81
+ # Advanced use case: MCP server with ArcticDB and S3
82
+ uv pip install chronos-lab[mcp,arcticdb]
83
+
84
+ # All features
85
+ uv pip install chronos-lab[yfinance,intrinio,arcticdb,mcp]
86
+ ```
87
+
88
+ ### Development Installation
89
+
90
+ ```bash
91
+ git clone https://github.com/yourusername/chronos-lab.git
92
+ cd chronos-lab
93
+
94
+ # Install with all extras
95
+ uv sync --all-extras
96
+
97
+ # Or install with specific extras only
98
+ uv sync --extra yfinance --extra mcp
99
+ ```
100
+ ## Configuration
101
+
102
+ On first import of chronos-lab (e.g., `import chronos_lab` or `from chronos_lab.sources import ...`), the package automatically creates `~/.chronos_lab/.env` with default settings. This file can be edited to configure API keys, storage paths, and other options:
103
+
104
+ ```bash
105
+ # View or edit configuration
106
+ nano ~/.chronos_lab/.env
107
+ ```
108
+
109
+ The configuration file includes settings for data sources (Intrinio API), storage backends (ArcticDB local/S3), and logging levels. All settings can also be overridden via environment variables.
110
+ ## Quick Start
111
+
112
+ ## Fetching Market Data
113
+
114
+ ### Yahoo Finance: OHLCV Time Series
115
+
116
+ Get daily price data for multiple symbols with minimal setup:
117
+
118
+ ```python
119
+ from chronos_lab.sources import ohlcv_from_yfinance
120
+
121
+ # Download last year of daily data
122
+ prices = ohlcv_from_yfinance(
123
+ symbols=['AAPL', 'MSFT', 'GOOGL'],
124
+ period='1y'
125
+ )
126
+
127
+ # Or specify exact dates
128
+ prices = ohlcv_from_yfinance(
129
+ symbols=['AAPL', 'MSFT'],
130
+ start_date='2024-01-01',
131
+ end_date='2024-12-31',
132
+ interval='1d'
133
+ )
134
+ ```
135
+
136
+ Returns a MultiIndex DataFrame with `(date, symbol)` levels for easy multi-symbol analysis.
137
+
138
+ #### Intraday Data
139
+
140
+ Fetch high-frequency data for algorithmic trading or analysis:
141
+
142
+ ```python
143
+ # Get 5-minute bars for today
144
+ intraday = ohlcv_from_yfinance(
145
+ symbols=['SPY', 'QQQ'],
146
+ period='1d',
147
+ interval='5m'
148
+ )
149
+ ```
150
+
151
+ #### Working with Individual Symbols
152
+
153
+ Get separate DataFrames per symbol for focused analysis:
154
+
155
+ ```python
156
+ # Returns dict: {'AAPL': DataFrame, 'MSFT': DataFrame}
157
+ prices_dict = ohlcv_from_yfinance(
158
+ symbols=['AAPL', 'MSFT'],
159
+ period='6mo',
160
+ output_dict=True
161
+ )
162
+
163
+ aapl_prices = prices_dict['AAPL']
164
+ ```
165
+
166
+ ### Intrinio
167
+
168
+ Access institutional-quality financial data:
169
+
170
+ ```python
171
+ from chronos_lab.sources import ohlcv_from_intrinio
172
+
173
+ # Daily data (requires Intrinio API key)
174
+ prices = ohlcv_from_intrinio(
175
+ symbols=['AAPL', 'MSFT'],
176
+ start_date='2024-01-01',
177
+ interval='daily',
178
+ api_key='your_api_key' # or set in ~/.chronos_lab/.env
179
+ )
180
+
181
+ # Intraday bars
182
+ intraday = ohlcv_from_intrinio(
183
+ symbols=['SPY'],
184
+ start_date='2024-01-15',
185
+ end_date='2024-01-16',
186
+ interval='5m'
187
+ )
188
+ ```
189
+
190
+ ### Persistent Storage with ArcticDB
191
+
192
+ Store and version your time series data efficiently:
193
+
194
+ ```python
195
+ from chronos_lab.sources import ohlcv_from_yfinance
196
+ from chronos_lab.storage import ohlcv_to_arcticdb
197
+
198
+ # Fetch and store in one workflow
199
+ prices = ohlcv_from_yfinance(
200
+ symbols=['AAPL', 'MSFT', 'GOOGL'],
201
+ period='1y'
202
+ )
203
+
204
+ ohlcv_to_arcticdb(
205
+ ohlcv=prices,
206
+ library_name='yfinance',
207
+ adb_mode='write'
208
+ )
209
+ ```
210
+
211
+ Works with both MultiIndex DataFrames and symbol dictionaries. If library_name is not specified, the default library name is used from the configuration file.
212
+
213
+ ### Reading from ArcticDB
214
+
215
+ Retrieve stored time series with flexible date filtering and formatting:
216
+
217
+ ```python
218
+ from chronos_lab.sources import ohlcv_from_arcticdb
219
+
220
+ # Get last 3 months of data
221
+ prices = ohlcv_from_arcticdb(
222
+ symbols=['AAPL', 'MSFT', 'GOOGL'],
223
+ period='3m',
224
+ library_name='yfinance'
225
+ )
226
+
227
+ # Or specify exact date range
228
+ prices = ohlcv_from_arcticdb(
229
+ symbols=['AAPL', 'MSFT'],
230
+ start_date='2026-01-01',
231
+ end_date='2026-01-15',
232
+ library_name='yfinance'
233
+ )
234
+ ```
235
+
236
+ #### Wide Format for Analysis
237
+
238
+ Transform to wide format for correlation analysis or charting:
239
+
240
+ ```python
241
+ # Pivot to wide format: one column per symbol
242
+ wide_prices = ohlcv_from_arcticdb(
243
+ symbols=['AAPL', 'MSFT', 'GOOGL', 'AMZN'],
244
+ period='1y',
245
+ columns=['close'],
246
+ library_name='yfinance',
247
+ pivot=True,
248
+ group_by='column' # Results in: close_AAPL, close_MSFT, etc.
249
+ )
250
+
251
+ # Calculate returns matrix
252
+ returns = wide_prices.pct_change()
253
+ correlation_matrix = returns.corr()
254
+ ```
255
+