crypticorn 1.0.2rc2__tar.gz → 1.0.2rc3__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.
Files changed (135) hide show
  1. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/PKG-INFO +1 -1
  2. crypticorn-1.0.2rc3/crypticorn/client.py +16 -0
  3. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/main.py +1 -1
  4. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn.egg-info/PKG-INFO +1 -1
  5. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/pyproject.toml +3 -2
  6. crypticorn-1.0.2rc2/crypticorn/client.py +0 -722
  7. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/LICENSE.md +0 -0
  8. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/__init__.py +0 -0
  9. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/hive/__init__.py +0 -0
  10. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/hive/main.py +0 -0
  11. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/hive/requirements.txt +0 -0
  12. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/hive/utils.py +0 -0
  13. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/__init__.py +0 -0
  14. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/__init__.py +0 -0
  15. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api/__init__.py +0 -0
  16. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api/funding_rates_api.py +0 -0
  17. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api/health_check_api.py +0 -0
  18. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api/ohlcv_data_api.py +0 -0
  19. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api/symbols_api.py +0 -0
  20. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api/udf_api.py +0 -0
  21. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api_client.py +0 -0
  22. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/api_response.py +0 -0
  23. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/configuration.py +0 -0
  24. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/exceptions.py +0 -0
  25. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/__init__.py +0 -0
  26. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/base_response_health_check_response.py +0 -0
  27. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/base_response_list_funding_rate_response.py +0 -0
  28. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/base_response_list_str.py +0 -0
  29. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/base_response_ohlcv_response.py +0 -0
  30. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/error_response.py +0 -0
  31. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/exchange.py +0 -0
  32. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/funding_rate_response.py +0 -0
  33. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/health_check_response.py +0 -0
  34. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/history_error_response.py +0 -0
  35. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/history_no_data_response.py +0 -0
  36. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/history_success_response.py +0 -0
  37. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/http_validation_error.py +0 -0
  38. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/market.py +0 -0
  39. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/ohlcv_response.py +0 -0
  40. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/resolution.py +0 -0
  41. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/response_get_history_udf_history_get.py +0 -0
  42. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/search_symbol_response.py +0 -0
  43. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/sort_direction.py +0 -0
  44. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/symbol_group_response.py +0 -0
  45. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/symbol_info_response.py +0 -0
  46. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/symbol_type.py +0 -0
  47. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/timeframe.py +0 -0
  48. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/udf_config_response.py +0 -0
  49. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/validation_error.py +0 -0
  50. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/models/validation_error_loc_inner.py +0 -0
  51. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/py.typed +0 -0
  52. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/client/rest.py +0 -0
  53. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/main.py +0 -0
  54. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/requirements.txt +0 -0
  55. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/__init__.py +0 -0
  56. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_base_response_health_check_response.py +0 -0
  57. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_base_response_list_funding_rate_response.py +0 -0
  58. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_base_response_list_str.py +0 -0
  59. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_base_response_ohlcv_response.py +0 -0
  60. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_error_response.py +0 -0
  61. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_exchange.py +0 -0
  62. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_funding_rate_response.py +0 -0
  63. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_funding_rates_api.py +0 -0
  64. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_health_check_api.py +0 -0
  65. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_health_check_response.py +0 -0
  66. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_history_error_response.py +0 -0
  67. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_history_no_data_response.py +0 -0
  68. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_history_success_response.py +0 -0
  69. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_http_validation_error.py +0 -0
  70. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_market.py +0 -0
  71. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_ohlcv_data_api.py +0 -0
  72. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_ohlcv_response.py +0 -0
  73. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_resolution.py +0 -0
  74. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_response_get_history_udf_history_get.py +0 -0
  75. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_search_symbol_response.py +0 -0
  76. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_sort_direction.py +0 -0
  77. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_symbol_group_response.py +0 -0
  78. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_symbol_info_response.py +0 -0
  79. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_symbol_type.py +0 -0
  80. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_symbols_api.py +0 -0
  81. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_timeframe.py +0 -0
  82. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_udf_api.py +0 -0
  83. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_udf_config_response.py +0 -0
  84. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_validation_error.py +0 -0
  85. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/klines/test/test_validation_error_loc_inner.py +0 -0
  86. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/__init__.py +0 -0
  87. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/__init__.py +0 -0
  88. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/__init__.py +0 -0
  89. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/api_keys_api.py +0 -0
  90. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/bots_api.py +0 -0
  91. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/exchanges_api.py +0 -0
  92. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/futures_trading_panel_api.py +0 -0
  93. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/notifications_api.py +0 -0
  94. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/orders_api.py +0 -0
  95. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/status_api.py +0 -0
  96. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/strategies_api.py +0 -0
  97. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api/trading_actions_api.py +0 -0
  98. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api_client.py +0 -0
  99. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/api_response.py +0 -0
  100. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/configuration.py +0 -0
  101. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/exceptions.py +0 -0
  102. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/__init__.py +0 -0
  103. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/action_model.py +0 -0
  104. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/api_error_identifier.py +0 -0
  105. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/api_key_model.py +0 -0
  106. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/bot_model.py +0 -0
  107. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/exchange.py +0 -0
  108. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/execution_ids.py +0 -0
  109. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/futures_balance.py +0 -0
  110. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/futures_trading_action.py +0 -0
  111. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/http_validation_error.py +0 -0
  112. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/margin_mode.py +0 -0
  113. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/market_type.py +0 -0
  114. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/notification_model.py +0 -0
  115. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/notification_type.py +0 -0
  116. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/order_model.py +0 -0
  117. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/order_status.py +0 -0
  118. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/post_futures_action.py +0 -0
  119. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/strategy_exchange_info.py +0 -0
  120. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/strategy_model.py +0 -0
  121. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/tpsl.py +0 -0
  122. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/trading_action_type.py +0 -0
  123. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/update_notification.py +0 -0
  124. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/validation_error.py +0 -0
  125. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/models/validation_error_loc_inner.py +0 -0
  126. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/py.typed +0 -0
  127. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/client/rest.py +0 -0
  128. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn/trade/requirements.txt +0 -0
  129. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn.egg-info/SOURCES.txt +0 -0
  130. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn.egg-info/dependency_links.txt +0 -0
  131. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn.egg-info/requires.txt +0 -0
  132. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/crypticorn.egg-info/top_level.txt +0 -0
  133. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/requirements-dev.txt +0 -0
  134. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/requirements-test.txt +0 -0
  135. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: crypticorn
3
- Version: 1.0.2rc2
3
+ Version: 1.0.2rc3
4
4
  Summary: Maximise Your Crypto Trading Profits with AI Predictions
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  License: MIT License
@@ -0,0 +1,16 @@
1
+ from crypticorn.hive import HiveClient
2
+ from crypticorn.trade import TradeClient
3
+ from crypticorn.klines import KlinesClient
4
+
5
+ class CrypticornClient:
6
+ def __init__(
7
+ self, base_url: str = "https://api.crypticorn.com", api_key: str = None, jwt: str = None
8
+ ):
9
+ self.base_url = base_url
10
+ self.api_key = api_key
11
+ self.jwt = jwt
12
+
13
+ # Initialize service clients
14
+ self.hive = HiveClient(base_url, api_key, jwt)
15
+ self.trade = TradeClient(base_url, api_key, jwt)
16
+ self.klines = KlinesClient(base_url, api_key, jwt)
@@ -34,6 +34,6 @@ class TradeClient:
34
34
  self.orders = OrdersApi(base_client)
35
35
  self.status = StatusApi(base_client)
36
36
  self.strategies = StrategiesApi(base_client)
37
- self.trading_actions = TradingActionsApi(base_client)
37
+ self.actions = TradingActionsApi(base_client)
38
38
  self.futures = FuturesTradingPanelApi(base_client)
39
39
  self.api_keys = APIKeysApi(base_client)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: crypticorn
3
- Version: 1.0.2rc2
3
+ Version: 1.0.2rc3
4
4
  Summary: Maximise Your Crypto Trading Profits with AI Predictions
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  License: MIT License
@@ -5,9 +5,10 @@ readme = "README.md"
5
5
  requires-python = ">=3.10"
6
6
  license = {text = "MIT License"}
7
7
  authors = [{name = "Crypticorn", email = "timon@crypticorn.com"}]
8
- version = "1.0.2rc2"
8
+ version = "1.0.2rc3"
9
9
  keywords = ["machine learning", "data science", "crypto", "modelling"]
10
- dynamic = ["dependencies", "optional-dependencies"]
10
+ dynamic = ["optional-dependencies"]
11
+ dependencies = []
11
12
 
12
13
  classifiers = [
13
14
  "Topic :: Scientific/Engineering",