vanda-api 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,15 @@
1
+ .venv/
2
+ .venv/*
3
+ *.ipynb
4
+ __pycache__/
5
+ *.pyc
6
+ *.pyo
7
+ *.pyd
8
+ *.db
9
+ *.sqlite3
10
+ .env
11
+ .venv
12
+ .git
13
+ logs/*
14
+ logs
15
+ .DS_Store
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.1.0] - 2024-02-06
9
+
10
+ ### Added
11
+
12
+ - Initial release
13
+ - Synchronous VandaClient
14
+ - Asynchronous AsyncVandaClient
15
+ - All 12 API endpoints implemented
16
+ - Retry logic with exponential backoff
17
+ - Comprehensive error handling
18
+ - Job polling utilities
19
+ - CSV/JSONL export support
20
+ - Optional pandas support
21
+ - Type hints throughout
22
+ - Full test coverage
23
+ - CI/CD with GitHub Actions
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Vanda LTD
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,175 @@
1
+ Metadata-Version: 2.4
2
+ Name: vanda-api
3
+ Version: 0.1.0
4
+ Summary: Official Python SDK for Vanda Analytics Data API
5
+ Project-URL: Homepage, https://gitlab.com/yourusername/vanda-api
6
+ Project-URL: Documentation, https://gitlab.com/yourusername/vanda-api#readme
7
+ Project-URL: Repository, https://gitlab.com/yourusername/vanda-api
8
+ Project-URL: Issues, https://gitlab.com/yourusername/vanda-api/-/issues
9
+ Author-email: Jonathan Aina <Jonathan.Aina@vanda.com>
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: analytics,api,finance,market-data,retail-trading,vanda
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Financial and Insurance Industry
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Typing :: Typed
23
+ Requires-Python: >=3.9
24
+ Requires-Dist: httpx>=0.27.0
25
+ Provides-Extra: dev
26
+ Requires-Dist: black>=23.0.0; extra == 'dev'
27
+ Requires-Dist: mypy>=1.5.0; extra == 'dev'
28
+ Requires-Dist: pandas-stubs>=2.0.0; extra == 'dev'
29
+ Requires-Dist: pre-commit>=3.3.0; extra == 'dev'
30
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
31
+ Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
32
+ Requires-Dist: pytest>=7.4.0; extra == 'dev'
33
+ Requires-Dist: respx>=0.20.0; extra == 'dev'
34
+ Requires-Dist: ruff>=0.1.0; extra == 'dev'
35
+ Provides-Extra: pandas
36
+ Requires-Dist: pandas>=1.5.0; extra == 'pandas'
37
+ Description-Content-Type: text/markdown
38
+
39
+ # Vanda Analytics Data API SDK
40
+
41
+ Official Python SDK for the Vanda Analytics Data API.
42
+
43
+ ## Installation
44
+
45
+ ```bash
46
+ pip install vanda-api
47
+ ```
48
+
49
+ For pandas support:
50
+
51
+ ```bash
52
+ pip install vanda-api[pandas]
53
+ ```
54
+
55
+ ## Quick Start
56
+
57
+ ### Synchronous Client
58
+
59
+ ```python
60
+ from datetime import date
61
+ from vanda import VandaClient
62
+
63
+ with VandaClient(token="YOUR_TOKEN_HERE") as client:
64
+ data = client.get_timeseries(
65
+ symbol="TSLA",
66
+ start_date=date(2025, 12, 1),
67
+ end_date=date(2025, 12, 31),
68
+ fields=["retail_net_turnover", "retail_buy_turnover"],
69
+ )
70
+ print(f"Retrieved {len(data)} records")
71
+ ```
72
+
73
+ ### Asynchronous Client
74
+
75
+ ```python
76
+ import asyncio
77
+ from datetime import date
78
+ from vanda import AsyncVandaClient
79
+
80
+ async def main():
81
+ async with AsyncVandaClient(token="YOUR_TOKEN_HERE") as client:
82
+ data = await client.get_timeseries(
83
+ symbol="TSLA",
84
+ start_date=date(2025, 12, 1),
85
+ end_date=date(2025, 12, 31),
86
+ fields=["retail_net_turnover"],
87
+ )
88
+ print(f"Retrieved {len(data)} records")
89
+
90
+ asyncio.run(main())
91
+ ```
92
+
93
+ ## Authentication
94
+
95
+ Set your API token via environment variable:
96
+
97
+ ```bash
98
+ export VANDA_API_TOKEN="your_token_here"
99
+ ```
100
+
101
+ Or pass directly:
102
+
103
+ ```python
104
+ client = VandaClient(token="your_token_here")
105
+ ```
106
+
107
+ ## Features
108
+
109
+ - Sync and async clients with consistent interfaces
110
+ - Automatic retry with exponential backoff
111
+ - Comprehensive error handling
112
+ - Job polling for async operations
113
+ - Export utilities (CSV, JSONL)
114
+ - Optional pandas support
115
+ - Type hints throughout
116
+
117
+ ## API Methods
118
+
119
+ ### Timeseries Data
120
+
121
+ - `get_timeseries()` - Get timeseries for a single symbol
122
+ - `get_timeseries_many()` - Get timeseries for multiple symbols
123
+ - `get_leaderboard()` - Get ranked leaderboard data
124
+
125
+ ### Bulk Operations
126
+
127
+ - `bulk_securities()` - Bulk fetch securities data
128
+ - `get_daily_snapshot()` - Get daily snapshot for many securities
129
+
130
+ ### Job Management
131
+
132
+ - `create_bulk_securities_job()` - Create async job
133
+ - `poll_job()` - Poll job until completion
134
+ - `get_job_status()` - Get job status
135
+ - `export_job_result()` - Export job result to file
136
+ - `stream_job_result()` - Stream job result to file
137
+
138
+ ### Export Operations
139
+
140
+ - `export_timeseries()` - Export timeseries to file
141
+
142
+ ### Metadata
143
+
144
+ - `list_fields()` - List available fields
145
+ - `list_intervals()` - List available intervals
146
+ - `list_securities()` - List available securities
147
+
148
+ ## Examples
149
+
150
+ See `examples/` directory for complete usage examples.
151
+
152
+ ## Requirements
153
+
154
+ - Python 3.9+
155
+ - httpx
156
+
157
+ ## Development
158
+
159
+ ```bash
160
+ git clone https://gitlab.com/yourusername/vanda-api.git
161
+ cd vanda-api
162
+ python -m venv venv
163
+ source venv/bin/activate
164
+ pip install -e ".[dev]"
165
+ pre-commit install
166
+ pytest
167
+ ```
168
+
169
+ ## License
170
+
171
+ MIT License - see LICENSE file for details.
172
+
173
+ ## Support
174
+
175
+ For issues and questions, please open an issue on GitLab.
@@ -0,0 +1,137 @@
1
+ # Vanda Analytics Data API SDK
2
+
3
+ Official Python SDK for the Vanda Analytics Data API.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install vanda-api
9
+ ```
10
+
11
+ For pandas support:
12
+
13
+ ```bash
14
+ pip install vanda-api[pandas]
15
+ ```
16
+
17
+ ## Quick Start
18
+
19
+ ### Synchronous Client
20
+
21
+ ```python
22
+ from datetime import date
23
+ from vanda import VandaClient
24
+
25
+ with VandaClient(token="YOUR_TOKEN_HERE") as client:
26
+ data = client.get_timeseries(
27
+ symbol="TSLA",
28
+ start_date=date(2025, 12, 1),
29
+ end_date=date(2025, 12, 31),
30
+ fields=["retail_net_turnover", "retail_buy_turnover"],
31
+ )
32
+ print(f"Retrieved {len(data)} records")
33
+ ```
34
+
35
+ ### Asynchronous Client
36
+
37
+ ```python
38
+ import asyncio
39
+ from datetime import date
40
+ from vanda import AsyncVandaClient
41
+
42
+ async def main():
43
+ async with AsyncVandaClient(token="YOUR_TOKEN_HERE") as client:
44
+ data = await client.get_timeseries(
45
+ symbol="TSLA",
46
+ start_date=date(2025, 12, 1),
47
+ end_date=date(2025, 12, 31),
48
+ fields=["retail_net_turnover"],
49
+ )
50
+ print(f"Retrieved {len(data)} records")
51
+
52
+ asyncio.run(main())
53
+ ```
54
+
55
+ ## Authentication
56
+
57
+ Set your API token via environment variable:
58
+
59
+ ```bash
60
+ export VANDA_API_TOKEN="your_token_here"
61
+ ```
62
+
63
+ Or pass directly:
64
+
65
+ ```python
66
+ client = VandaClient(token="your_token_here")
67
+ ```
68
+
69
+ ## Features
70
+
71
+ - Sync and async clients with consistent interfaces
72
+ - Automatic retry with exponential backoff
73
+ - Comprehensive error handling
74
+ - Job polling for async operations
75
+ - Export utilities (CSV, JSONL)
76
+ - Optional pandas support
77
+ - Type hints throughout
78
+
79
+ ## API Methods
80
+
81
+ ### Timeseries Data
82
+
83
+ - `get_timeseries()` - Get timeseries for a single symbol
84
+ - `get_timeseries_many()` - Get timeseries for multiple symbols
85
+ - `get_leaderboard()` - Get ranked leaderboard data
86
+
87
+ ### Bulk Operations
88
+
89
+ - `bulk_securities()` - Bulk fetch securities data
90
+ - `get_daily_snapshot()` - Get daily snapshot for many securities
91
+
92
+ ### Job Management
93
+
94
+ - `create_bulk_securities_job()` - Create async job
95
+ - `poll_job()` - Poll job until completion
96
+ - `get_job_status()` - Get job status
97
+ - `export_job_result()` - Export job result to file
98
+ - `stream_job_result()` - Stream job result to file
99
+
100
+ ### Export Operations
101
+
102
+ - `export_timeseries()` - Export timeseries to file
103
+
104
+ ### Metadata
105
+
106
+ - `list_fields()` - List available fields
107
+ - `list_intervals()` - List available intervals
108
+ - `list_securities()` - List available securities
109
+
110
+ ## Examples
111
+
112
+ See `examples/` directory for complete usage examples.
113
+
114
+ ## Requirements
115
+
116
+ - Python 3.9+
117
+ - httpx
118
+
119
+ ## Development
120
+
121
+ ```bash
122
+ git clone https://gitlab.com/yourusername/vanda-api.git
123
+ cd vanda-api
124
+ python -m venv venv
125
+ source venv/bin/activate
126
+ pip install -e ".[dev]"
127
+ pre-commit install
128
+ pytest
129
+ ```
130
+
131
+ ## License
132
+
133
+ MIT License - see LICENSE file for details.
134
+
135
+ ## Support
136
+
137
+ For issues and questions, please open an issue on GitLab.
@@ -0,0 +1,117 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "vanda-api"
7
+ version = "0.1.0"
8
+ description = "Official Python SDK for Vanda Analytics Data API"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Jonathan Aina", email = "Jonathan.Aina@vanda.com"}
14
+ ]
15
+ keywords = ["vanda", "analytics", "finance", "market-data", "retail-trading", "api"]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Intended Audience :: Developers",
19
+ "Intended Audience :: Financial and Insurance Industry",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Typing :: Typed",
27
+ ]
28
+ dependencies = [
29
+ "httpx>=0.27.0",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ pandas = ["pandas>=1.5.0"]
34
+ dev = [
35
+ "pytest>=7.4.0",
36
+ "pytest-asyncio>=0.21.0",
37
+ "pytest-cov>=4.1.0",
38
+ "respx>=0.20.0",
39
+ "ruff>=0.1.0",
40
+ "black>=23.0.0",
41
+ "mypy>=1.5.0",
42
+ "pre-commit>=3.3.0",
43
+ "pandas-stubs>=2.0.0",
44
+ ]
45
+
46
+ [project.urls]
47
+ Homepage = "https://gitlab.com/yourusername/vanda-api"
48
+ Documentation = "https://gitlab.com/yourusername/vanda-api#readme"
49
+ Repository = "https://gitlab.com/yourusername/vanda-api"
50
+ Issues = "https://gitlab.com/yourusername/vanda-api/-/issues"
51
+
52
+ [tool.hatch.build.targets.sdist]
53
+ include = [
54
+ "/src",
55
+ "/tests",
56
+ "/README.md",
57
+ "/LICENSE",
58
+ "/CHANGELOG.md",
59
+ ]
60
+
61
+ [tool.hatch.build.targets.wheel]
62
+ packages = ["src/vanda"]
63
+
64
+ [tool.black]
65
+ line-length = 100
66
+ target-version = ["py39", "py310", "py311", "py312"]
67
+ include = '\\.pyi?$'
68
+
69
+ [tool.ruff]
70
+ line-length = 100
71
+ target-version = "py39"
72
+ select = [
73
+ "E", # pycodestyle errors
74
+ "W", # pycodestyle warnings
75
+ "F", # pyflakes
76
+ "I", # isort
77
+ "B", # flake8-bugbear
78
+ "C4", # flake8-comprehensions
79
+ "UP", # pyupgrade
80
+ ]
81
+ ignore = [
82
+ "E501", # line too long (handled by black)
83
+ ]
84
+
85
+ [tool.ruff.isort]
86
+ known-first-party = ["vanda"]
87
+
88
+ [tool.mypy]
89
+ python_version = "3.9"
90
+ warn_return_any = true
91
+ warn_unused_configs = true
92
+ disallow_untyped_defs = true
93
+ disallow_incomplete_defs = true
94
+ check_untyped_defs = true
95
+ disallow_untyped_decorators = false
96
+ no_implicit_optional = true
97
+ warn_redundant_casts = true
98
+ warn_unused_ignores = true
99
+ warn_no_return = true
100
+ strict_equality = true
101
+
102
+ [[tool.mypy.overrides]]
103
+ module = "tests.*"
104
+ disallow_untyped_defs = false
105
+
106
+ [tool.pytest.ini_options]
107
+ testpaths = ["tests"]
108
+ asyncio_mode = "auto"
109
+ addopts = "--cov=vanda --cov-report=term-missing --cov-report=xml"
110
+
111
+ [tool.coverage.run]
112
+ source = ["src"]
113
+ omit = [
114
+ "*/tests/*",
115
+ "*/test_*.py",
116
+ ]
117
+ disable_warnings = ["module-not-measured"]
@@ -0,0 +1,25 @@
1
+ from vanda.async_client import AsyncVandaClient
2
+ from vanda.client import VandaClient
3
+ from vanda.errors import (
4
+ AuthError,
5
+ NotFoundError,
6
+ RateLimitError,
7
+ ServerError,
8
+ TransportError,
9
+ ValidationError,
10
+ VandaError,
11
+ )
12
+
13
+ __version__ = "0.1.0"
14
+
15
+ __all__ = [
16
+ "VandaClient",
17
+ "AsyncVandaClient",
18
+ "VandaError",
19
+ "AuthError",
20
+ "RateLimitError",
21
+ "NotFoundError",
22
+ "ValidationError",
23
+ "ServerError",
24
+ "TransportError",
25
+ ]