hawk-sdk 0.0.4__tar.gz → 0.0.5__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.
Potentially problematic release.
This version of hawk-sdk might be problematic. Click here for more details.
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/PKG-INFO +1 -1
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/README.md +1 -1
- hawk_sdk-0.0.5/hawk_sdk/api/futures/__init__.py +1 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/futures/main.py +1 -1
- hawk_sdk-0.0.5/hawk_sdk/api/system/__init__.py +1 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/PKG-INFO +1 -1
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/setup.py +1 -1
- hawk_sdk-0.0.4/hawk_sdk/__init__.py +0 -1
- hawk_sdk-0.0.4/hawk_sdk/core/common/__init__.py +0 -0
- {hawk_sdk-0.0.4/hawk_sdk/api/futures → hawk_sdk-0.0.5/hawk_sdk}/__init__.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/__init__.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/futures/repository.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/futures/service.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/system/main.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/system/repository.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/system/service.py +0 -0
- {hawk_sdk-0.0.4/hawk_sdk/api/system → hawk_sdk-0.0.5/hawk_sdk/core}/__init__.py +0 -0
- {hawk_sdk-0.0.4/hawk_sdk/core → hawk_sdk-0.0.5/hawk_sdk/core/common}/__init__.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/core/common/base_enum.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/core/common/constants.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/core/common/data_object.py +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/SOURCES.txt +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/dependency_links.txt +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/requires.txt +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/top_level.txt +0 -0
- {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/setup.cfg +0 -0
|
@@ -53,7 +53,7 @@ pip install dist/your_package_name-X.Y.Z-py3-none-any.whl
|
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
### 6. Upload to PyPI
|
|
56
|
-
Once you’re satisfied with the package, upload it to PyPI:
|
|
56
|
+
Once you’re satisfied with the package, upload it to PyPI. Contact Rithwik for the pypi API key:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
59
|
twine upload dist/*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from hawk_sdk.api.futures.main import Futures
|
|
@@ -24,7 +24,7 @@ class Futures:
|
|
|
24
24
|
def get_ohlcvo(self, start_date: str, end_date: str, interval: str, hawk_ids: List[int]) -> DataObject:
|
|
25
25
|
"""Fetch open, high, low, close, volume, and open interest data for the given date range and hawk_ids.
|
|
26
26
|
|
|
27
|
-
:param start_date:
|
|
27
|
+
:param start_date: %The start date for the data query (YYYY-MM-DD).
|
|
28
28
|
:param end_date: The end date for the data query (YYYY-MM-DD).
|
|
29
29
|
:param interval: The interval for the data query (e.g., '1d', '1h', '1m').
|
|
30
30
|
:param hawk_ids: A list of specific hawk_ids to filter by.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from hawk_sdk.api.system.main import System
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from hawk_sdk.api.futures import Futures
|
|
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
|