tickflow 0.1.0.dev5__tar.gz → 0.1.1__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.
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/PKG-INFO +1 -2
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/pyproject.toml +2 -2
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/generated_model.py +4 -4
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow.egg-info/PKG-INFO +1 -2
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/README.md +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/setup.cfg +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/__init__.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/_base_client.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/_exceptions.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/_types.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/client.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/resources/__init__.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/resources/_base.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/resources/exchanges.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/resources/instruments.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/resources/klines.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/resources/quotes.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/resources/universes.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow/utils.py +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow.egg-info/SOURCES.txt +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow.egg-info/dependency_links.txt +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow.egg-info/requires.txt +0 -0
- {tickflow-0.1.0.dev5 → tickflow-0.1.1}/tickflow.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tickflow
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: TickFlow Python Client
|
|
5
5
|
Author: TickFlow Team
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Documentation, https://docs.tickflow.org
|
|
8
|
-
Project-URL: Repository, https://github.com/tickflow/tickflow-python
|
|
9
8
|
Keywords: finance,stock,market-data,trading,api-client
|
|
10
9
|
Classifier: Development Status :: 4 - Beta
|
|
11
10
|
Classifier: Intended Audience :: Developers
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tickflow"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "TickFlow Python Client"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.9"
|
|
@@ -40,7 +40,7 @@ all = [
|
|
|
40
40
|
|
|
41
41
|
[project.urls]
|
|
42
42
|
Documentation = "https://docs.tickflow.org"
|
|
43
|
-
Repository = "https://
|
|
43
|
+
# Repository = "https://docs.tickflow.org"
|
|
44
44
|
|
|
45
45
|
[build-system]
|
|
46
46
|
requires = ["setuptools>=61.0", "wheel"]
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: openapi.json
|
|
3
|
-
# timestamp: 2026-02-
|
|
3
|
+
# timestamp: 2026-02-04T08:37:34+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
-
from typing import Any, Dict, List,
|
|
7
|
+
from typing import Any, Dict, List, Optional, Union
|
|
8
8
|
|
|
9
|
-
from typing_extensions import NotRequired, TypeAlias
|
|
9
|
+
from typing_extensions import Literal, NotRequired, TypeAlias, TypedDict
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class ApiError(TypedDict):
|
|
@@ -227,10 +227,10 @@ class Instrument(TypedDict):
|
|
|
227
227
|
code: str
|
|
228
228
|
exchange: str
|
|
229
229
|
ext: NotRequired[Optional[InstrumentExt]]
|
|
230
|
-
instrument_type: NotRequired[Optional[InstrumentType]]
|
|
231
230
|
name: NotRequired[Optional[str]]
|
|
232
231
|
region: str
|
|
233
232
|
symbol: str
|
|
233
|
+
type: NotRequired[Optional[InstrumentType]]
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
class InstrumentsResponse(TypedDict):
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tickflow
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: TickFlow Python Client
|
|
5
5
|
Author: TickFlow Team
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Documentation, https://docs.tickflow.org
|
|
8
|
-
Project-URL: Repository, https://github.com/tickflow/tickflow-python
|
|
9
8
|
Keywords: finance,stock,market-data,trading,api-client
|
|
10
9
|
Classifier: Development Status :: 4 - Beta
|
|
11
10
|
Classifier: Intended Audience :: Developers
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|