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.

Files changed (26) hide show
  1. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/PKG-INFO +1 -1
  2. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/README.md +1 -1
  3. hawk_sdk-0.0.5/hawk_sdk/api/futures/__init__.py +1 -0
  4. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/futures/main.py +1 -1
  5. hawk_sdk-0.0.5/hawk_sdk/api/system/__init__.py +1 -0
  6. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/PKG-INFO +1 -1
  7. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/setup.py +1 -1
  8. hawk_sdk-0.0.4/hawk_sdk/__init__.py +0 -1
  9. hawk_sdk-0.0.4/hawk_sdk/core/common/__init__.py +0 -0
  10. {hawk_sdk-0.0.4/hawk_sdk/api/futures → hawk_sdk-0.0.5/hawk_sdk}/__init__.py +0 -0
  11. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/__init__.py +0 -0
  12. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/futures/repository.py +0 -0
  13. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/futures/service.py +0 -0
  14. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/system/main.py +0 -0
  15. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/system/repository.py +0 -0
  16. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/api/system/service.py +0 -0
  17. {hawk_sdk-0.0.4/hawk_sdk/api/system → hawk_sdk-0.0.5/hawk_sdk/core}/__init__.py +0 -0
  18. {hawk_sdk-0.0.4/hawk_sdk/core → hawk_sdk-0.0.5/hawk_sdk/core/common}/__init__.py +0 -0
  19. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/core/common/base_enum.py +0 -0
  20. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/core/common/constants.py +0 -0
  21. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk/core/common/data_object.py +0 -0
  22. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/SOURCES.txt +0 -0
  23. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/dependency_links.txt +0 -0
  24. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/requires.txt +0 -0
  25. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/hawk_sdk.egg-info/top_level.txt +0 -0
  26. {hawk_sdk-0.0.4 → hawk_sdk-0.0.5}/setup.cfg +0 -0
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hawk-sdk
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Requires-Dist: google-cloud-bigquery
5
5
  Requires-Dist: pandas
@@ -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: The start date for the data query (YYYY-MM-DD).
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,5 +1,5 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hawk-sdk
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Requires-Dist: google-cloud-bigquery
5
5
  Requires-Dist: pandas
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='hawk-sdk',
5
- version='0.0.4',
5
+ version='0.0.5',
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  'google-cloud-bigquery',
@@ -1 +0,0 @@
1
- from hawk_sdk.api.futures import Futures
File without changes
File without changes