crypticorn 2.5.1__py3-none-any.whl → 2.5.3__py3-none-any.whl

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 (191) hide show
  1. crypticorn/cli/init.py +3 -0
  2. crypticorn/common/__init__.py +1 -0
  3. crypticorn/common/enums.py +3 -1
  4. crypticorn/common/errors.py +42 -21
  5. crypticorn/common/mixins.py +20 -0
  6. crypticorn/common/scopes.py +4 -20
  7. crypticorn/common/status_router.py +44 -0
  8. crypticorn/common/utils.py +13 -14
  9. crypticorn/hive/client/__init__.py +1 -5
  10. crypticorn/hive/client/api/data_api.py +1 -33
  11. crypticorn/hive/client/api/models_api.py +8 -104
  12. crypticorn/hive/client/api/status_api.py +481 -9
  13. crypticorn/hive/client/configuration.py +12 -4
  14. crypticorn/hive/client/models/__init__.py +1 -5
  15. crypticorn/hive/client/models/coins.py +0 -1
  16. crypticorn/hive/client/models/data_version.py +0 -1
  17. crypticorn/{metrics/client/models/error_response.py → hive/client/models/exception_detail.py} +26 -21
  18. crypticorn/hive/client/rest.py +4 -1
  19. crypticorn/klines/client/__init__.py +0 -5
  20. crypticorn/klines/client/api/change_in_timeframe_api.py +8 -9
  21. crypticorn/klines/client/api/ohlcv_data_api.py +7 -8
  22. crypticorn/klines/client/api/status_api.py +481 -6
  23. crypticorn/klines/client/api/symbols_api.py +7 -8
  24. crypticorn/klines/client/api/udf_api.py +0 -227
  25. crypticorn/klines/client/models/__init__.py +0 -5
  26. crypticorn/klines/client/models/exception_detail.py +3 -6
  27. crypticorn/klines/client/models/search_symbol.py +4 -3
  28. crypticorn/klines/client/models/udf_config.py +1 -2
  29. crypticorn/metrics/client/__init__.py +1 -6
  30. crypticorn/metrics/client/api/exchanges_api.py +29 -31
  31. crypticorn/metrics/client/api/indicators_api.py +15 -16
  32. crypticorn/metrics/client/api/logs_api.py +1 -1
  33. crypticorn/metrics/client/api/marketcap_api.py +15 -16
  34. crypticorn/metrics/client/api/markets_api.py +15 -16
  35. crypticorn/metrics/client/api/status_api.py +477 -2
  36. crypticorn/metrics/client/api/tokens_api.py +1 -1
  37. crypticorn/metrics/client/api_client.py +1 -1
  38. crypticorn/metrics/client/configuration.py +3 -5
  39. crypticorn/metrics/client/exceptions.py +1 -1
  40. crypticorn/metrics/client/models/__init__.py +1 -6
  41. crypticorn/metrics/client/models/exception_detail.py +4 -7
  42. crypticorn/metrics/client/models/severity.py +1 -1
  43. crypticorn/metrics/client/models/time_interval.py +1 -1
  44. crypticorn/metrics/client/models/trading_status.py +1 -1
  45. crypticorn/metrics/client/rest.py +1 -1
  46. crypticorn/pay/client/__init__.py +3 -8
  47. crypticorn/pay/client/api/now_payments_api.py +14 -17
  48. crypticorn/pay/client/api/payments_api.py +2 -11
  49. crypticorn/pay/client/api/products_api.py +2 -11
  50. crypticorn/pay/client/api/status_api.py +483 -8
  51. crypticorn/pay/client/api_client.py +2 -2
  52. crypticorn/pay/client/configuration.py +3 -3
  53. crypticorn/pay/client/exceptions.py +2 -2
  54. crypticorn/pay/client/models/__init__.py +3 -8
  55. crypticorn/{metrics/client/models/base_response_dict.py → pay/client/models/exception_detail.py} +28 -20
  56. crypticorn/pay/client/models/now_create_invoice_req.py +2 -2
  57. crypticorn/pay/client/models/now_create_invoice_res.py +2 -2
  58. crypticorn/pay/client/models/payment.py +2 -2
  59. crypticorn/pay/client/models/payment_status.py +2 -2
  60. crypticorn/pay/client/models/product_create.py +2 -2
  61. crypticorn/pay/client/models/product_read.py +2 -2
  62. crypticorn/pay/client/models/product_sub_read.py +2 -2
  63. crypticorn/pay/client/models/product_update.py +2 -2
  64. crypticorn/pay/client/models/scope.py +2 -2
  65. crypticorn/pay/client/models/services.py +2 -2
  66. crypticorn/pay/client/rest.py +2 -2
  67. crypticorn/trade/client/__init__.py +4 -9
  68. crypticorn/trade/client/api/api_keys_api.py +5 -20
  69. crypticorn/trade/client/api/bots_api.py +7 -19
  70. crypticorn/trade/client/api/exchanges_api.py +8 -8
  71. crypticorn/trade/client/api/futures_trading_panel_api.py +10 -22
  72. crypticorn/trade/client/api/notifications_api.py +10 -25
  73. crypticorn/trade/client/api/orders_api.py +2 -5
  74. crypticorn/trade/client/api/status_api.py +483 -8
  75. crypticorn/trade/client/api/strategies_api.py +5 -17
  76. crypticorn/trade/client/api/trading_actions_api.py +18 -26
  77. crypticorn/trade/client/api_client.py +2 -2
  78. crypticorn/trade/client/configuration.py +5 -5
  79. crypticorn/trade/client/exceptions.py +2 -2
  80. crypticorn/trade/client/models/__init__.py +4 -9
  81. crypticorn/trade/client/models/action_model.py +3 -4
  82. crypticorn/trade/client/models/bot_model.py +2 -2
  83. crypticorn/trade/client/models/bot_status.py +2 -2
  84. crypticorn/{klines/client/models/error_response.py → trade/client/models/exception_detail.py} +26 -21
  85. crypticorn/trade/client/models/exchange_key_model.py +4 -13
  86. crypticorn/trade/client/models/execution_ids.py +2 -2
  87. crypticorn/trade/client/models/futures_balance.py +2 -2
  88. crypticorn/trade/client/models/futures_trading_action.py +3 -4
  89. crypticorn/trade/client/models/margin_mode.py +2 -2
  90. crypticorn/trade/client/models/notification_model.py +2 -2
  91. crypticorn/trade/client/models/order_model.py +6 -16
  92. crypticorn/trade/client/models/order_status.py +2 -2
  93. crypticorn/trade/client/models/post_futures_action.py +2 -2
  94. crypticorn/trade/client/models/spot_trading_action.py +3 -4
  95. crypticorn/trade/client/models/strategy_exchange_info.py +4 -5
  96. crypticorn/trade/client/models/strategy_model_input.py +3 -4
  97. crypticorn/trade/client/models/strategy_model_output.py +3 -4
  98. crypticorn/trade/client/models/tpsl.py +5 -3
  99. crypticorn/trade/client/models/trading_action_type.py +2 -2
  100. crypticorn/trade/client/rest.py +2 -2
  101. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/METADATA +1 -1
  102. crypticorn-2.5.3.dist-info/RECORD +223 -0
  103. crypticorn/hive/client/models/http_validation_error.py +0 -99
  104. crypticorn/hive/client/models/validation_error.py +0 -105
  105. crypticorn/hive/client/models/validation_error_loc_inner.py +0 -159
  106. crypticorn/klines/client/api/health_check_api.py +0 -265
  107. crypticorn/klines/client/models/api_error_identifier.py +0 -108
  108. crypticorn/klines/client/models/api_error_level.py +0 -37
  109. crypticorn/klines/client/models/api_error_type.py +0 -37
  110. crypticorn/klines/client/models/base_response_health_check_response.py +0 -114
  111. crypticorn/klines/client/models/base_response_list_change_in_timeframe_response.py +0 -123
  112. crypticorn/klines/client/models/base_response_list_funding_rate_response.py +0 -118
  113. crypticorn/klines/client/models/base_response_list_str.py +0 -106
  114. crypticorn/klines/client/models/base_response_ohlcv_response.py +0 -114
  115. crypticorn/klines/client/models/change_in_timeframe_response.py +0 -86
  116. crypticorn/klines/client/models/exchange.py +0 -91
  117. crypticorn/klines/client/models/funding_rate_response.py +0 -92
  118. crypticorn/klines/client/models/health_check_response.py +0 -91
  119. crypticorn/klines/client/models/history_error_response.py +0 -89
  120. crypticorn/klines/client/models/history_no_data_response.py +0 -99
  121. crypticorn/klines/client/models/history_success_response.py +0 -99
  122. crypticorn/klines/client/models/http_validation_error.py +0 -99
  123. crypticorn/klines/client/models/internal_exchange.py +0 -39
  124. crypticorn/klines/client/models/market.py +0 -35
  125. crypticorn/klines/client/models/market_type.py +0 -35
  126. crypticorn/klines/client/models/ohlcv_response.py +0 -105
  127. crypticorn/klines/client/models/response_get_history_udf_history_get.py +0 -198
  128. crypticorn/klines/client/models/response_get_udf_history.py +0 -198
  129. crypticorn/klines/client/models/search_symbol_response.py +0 -104
  130. crypticorn/klines/client/models/symbol_group_response.py +0 -83
  131. crypticorn/klines/client/models/symbol_info_response.py +0 -131
  132. crypticorn/klines/client/models/udf_config_response.py +0 -160
  133. crypticorn/klines/client/models/validation_error.py +0 -105
  134. crypticorn/klines/client/models/validation_error_loc_inner.py +0 -159
  135. crypticorn/metrics/client/api/health_check_api.py +0 -265
  136. crypticorn/metrics/client/models/api_error_identifier.py +0 -108
  137. crypticorn/metrics/client/models/api_error_level.py +0 -37
  138. crypticorn/metrics/client/models/api_error_type.py +0 -37
  139. crypticorn/metrics/client/models/base_response_health_check_response.py +0 -114
  140. crypticorn/metrics/client/models/base_response_list_dict.py +0 -106
  141. crypticorn/metrics/client/models/base_response_list_exchange_mapping.py +0 -118
  142. crypticorn/metrics/client/models/base_response_list_str.py +0 -106
  143. crypticorn/metrics/client/models/exchange_mapping.py +0 -134
  144. crypticorn/metrics/client/models/health_check_response.py +0 -91
  145. crypticorn/metrics/client/models/http_validation_error.py +0 -99
  146. crypticorn/metrics/client/models/internal_exchange.py +0 -39
  147. crypticorn/metrics/client/models/market.py +0 -35
  148. crypticorn/metrics/client/models/market_type.py +0 -35
  149. crypticorn/metrics/client/models/validation_error.py +0 -105
  150. crypticorn/metrics/client/models/validation_error_loc_inner.py +0 -159
  151. crypticorn/pay/client/models/api_status_res.py +0 -83
  152. crypticorn/pay/client/models/body_create_now_invoice.py +0 -98
  153. crypticorn/pay/client/models/body_create_product.py +0 -98
  154. crypticorn/pay/client/models/body_get_products.py +0 -87
  155. crypticorn/pay/client/models/body_handle_now_webhook.py +0 -98
  156. crypticorn/pay/client/models/body_update_product.py +0 -98
  157. crypticorn/pay/client/models/combined_payment_history.py +0 -101
  158. crypticorn/pay/client/models/create_invoice_req.py +0 -188
  159. crypticorn/pay/client/models/create_invoice_res.py +0 -188
  160. crypticorn/pay/client/models/currency.py +0 -165
  161. crypticorn/pay/client/models/estimate_price_req.py +0 -91
  162. crypticorn/pay/client/models/estimate_price_res.py +0 -102
  163. crypticorn/pay/client/models/get_currencies_res.py +0 -99
  164. crypticorn/pay/client/models/get_payment_status_res.py +0 -222
  165. crypticorn/pay/client/models/get_payments_list_res.py +0 -109
  166. crypticorn/pay/client/models/http_validation_error.py +0 -99
  167. crypticorn/pay/client/models/min_amount_req.py +0 -124
  168. crypticorn/pay/client/models/min_amount_res.py +0 -105
  169. crypticorn/pay/client/models/now_api_status_res.py +0 -83
  170. crypticorn/pay/client/models/now_fee_structure.py +0 -104
  171. crypticorn/pay/client/models/now_payment_model.py +0 -124
  172. crypticorn/pay/client/models/now_payment_status.py +0 -42
  173. crypticorn/pay/client/models/now_webhook_payload.py +0 -181
  174. crypticorn/pay/client/models/partial_product_update_model.py +0 -150
  175. crypticorn/pay/client/models/product.py +0 -87
  176. crypticorn/pay/client/models/product_model.py +0 -128
  177. crypticorn/pay/client/models/product_subs_model.py +0 -108
  178. crypticorn/pay/client/models/product_update_model.py +0 -150
  179. crypticorn/pay/client/models/unified_payment_model.py +0 -112
  180. crypticorn/pay/client/models/validation_error.py +0 -105
  181. crypticorn/pay/client/models/validation_error_loc_inner.py +0 -159
  182. crypticorn/trade/client/models/api_key_model.py +0 -156
  183. crypticorn/trade/client/models/exchange.py +0 -35
  184. crypticorn/trade/client/models/http_validation_error.py +0 -99
  185. crypticorn/trade/client/models/market_type.py +0 -35
  186. crypticorn/trade/client/models/validation_error.py +0 -105
  187. crypticorn/trade/client/models/validation_error_loc_inner.py +0 -159
  188. crypticorn-2.5.1.dist-info/RECORD +0 -307
  189. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/WHEEL +0 -0
  190. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/entry_points.txt +0 -0
  191. {crypticorn-2.5.1.dist-info → crypticorn-2.5.3.dist-info}/top_level.txt +0 -0
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -28,7 +28,6 @@ from pydantic import (
28
28
  )
29
29
  from typing import Any, ClassVar, Dict, List, Optional, Union
30
30
  from typing_extensions import Annotated
31
- from crypticorn.trade.client.models.market_type import MarketType
32
31
  from crypticorn.trade.client.models.tpsl import TPSL
33
32
  from crypticorn.trade.client.models.trading_action_type import TradingActionType
34
33
  from typing import Optional, Set
@@ -45,7 +44,7 @@ class SpotTradingAction(BaseModel):
45
44
  open_order_execution_id: Optional[StrictStr] = None
46
45
  client_order_id: Optional[StrictStr] = None
47
46
  action_type: TradingActionType = Field(description="The type of action.")
48
- market_type: MarketType = Field(description="The type of market the action is for.")
47
+ market_type: StrictStr = Field(description="Market types")
49
48
  strategy_id: StrictStr = Field(description="UID for the strategy.")
50
49
  symbol: StrictStr = Field(
51
50
  description="Trading symbol or asset pair in format: 'symbol/quote_currency' (see market service for valid symbols)"
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -17,9 +17,8 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Union
22
- from crypticorn.trade.client.models.exchange import Exchange
23
22
  from typing import Optional, Set
24
23
  from typing_extensions import Self
25
24
 
@@ -29,7 +28,7 @@ class StrategyExchangeInfo(BaseModel):
29
28
  StrategyExchangeInfo
30
29
  """ # noqa: E501
31
30
 
32
- exchange: Exchange = Field(description="Exchange name. Of type Exchange")
31
+ exchange: StrictStr = Field(description="Supported exchanges for trading")
33
32
  min_amount: Union[StrictFloat, StrictInt] = Field(
34
33
  description="Minimum amount for the strategy on the exchange"
35
34
  )
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -20,7 +20,6 @@ import json
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional, Union
22
22
  from typing_extensions import Annotated
23
- from crypticorn.trade.client.models.market_type import MarketType
24
23
  from crypticorn.trade.client.models.strategy_exchange_info import StrategyExchangeInfo
25
24
  from typing import Optional, Set
26
25
  from typing_extensions import Self
@@ -50,7 +49,7 @@ class StrategyModelInput(BaseModel):
50
49
  Annotated[float, Field(le=1.0, strict=True)],
51
50
  Annotated[int, Field(le=1, strict=True)],
52
51
  ] = Field(description="Performance fee for the strategy")
53
- market_type: MarketType = Field(description="Market of operation of the strategy")
52
+ market_type: StrictStr = Field(description="Market types")
54
53
  __properties: ClassVar[List[str]] = [
55
54
  "created_at",
56
55
  "updated_at",
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -20,7 +20,6 @@ import json
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional, Union
22
22
  from typing_extensions import Annotated
23
- from crypticorn.trade.client.models.market_type import MarketType
24
23
  from crypticorn.trade.client.models.strategy_exchange_info import StrategyExchangeInfo
25
24
  from typing import Optional, Set
26
25
  from typing_extensions import Self
@@ -50,7 +49,7 @@ class StrategyModelOutput(BaseModel):
50
49
  Annotated[float, Field(le=1.0, strict=True)],
51
50
  Annotated[int, Field(le=1, strict=True)],
52
51
  ] = Field(description="Performance fee for the strategy")
53
- market_type: MarketType = Field(description="Market of operation of the strategy")
52
+ market_type: StrictStr = Field(description="Market types")
54
53
  __properties: ClassVar[List[str]] = [
55
54
  "created_at",
56
55
  "updated_at",
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -39,7 +39,9 @@ class TPSL(BaseModel):
39
39
  allocation: Union[
40
40
  Annotated[float, Field(le=1.0, strict=True, ge=0.0)],
41
41
  Annotated[int, Field(le=1, strict=True, ge=0)],
42
- ] = Field(description="Percentage of the order to sell")
42
+ ] = Field(
43
+ description="Percentage of the open order to sell. All allocations must sum up to 1."
44
+ )
43
45
  execution_id: Optional[StrictStr] = None
44
46
  client_order_id: Optional[StrictStr] = None
45
47
  __properties: ClassVar[List[str]] = [
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -3,9 +3,9 @@
3
3
  """
4
4
  Trading API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ API for automated trading and exchange interface
7
7
 
8
- The version of the OpenAPI document: 0.1.0
8
+ The version of the OpenAPI document: 1.0.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crypticorn
3
- Version: 2.5.1
3
+ Version: 2.5.3
4
4
  Summary: Maximise Your Crypto Trading Profits with AI Predictions
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  Project-URL: Homepage, https://crypticorn.com
@@ -0,0 +1,223 @@
1
+ crypticorn/__init__.py,sha256=TL41V09dmtbd2ee07wmOuG9KJJpyvLMPJi5DEd9bDyU,129
2
+ crypticorn/client.py,sha256=jMdF4mZuqB8YMZZOwJkTcvpHluGqw6Q-taSF6vQS5WM,3912
3
+ crypticorn/auth/__init__.py,sha256=JAl1tBLK9pYLr_-YKaj581c-c94PWLoqnatTIVAVvMM,81
4
+ crypticorn/auth/main.py,sha256=j8eRGN2gUWyeOCnWnUPe3mCAfaidGnOMnZRiSQy-yzM,720
5
+ crypticorn/auth/client/__init__.py,sha256=Xda54fgvIunmwHy8CeOI_L3LJxQJ6qcoN3HQ24zIPxo,4970
6
+ crypticorn/auth/client/api_client.py,sha256=YumNsoI1ROiukpmDloiSfy7ZTd207khTmNLa7Dien5o,26888
7
+ crypticorn/auth/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
8
+ crypticorn/auth/client/configuration.py,sha256=eBiet9rc3ok09IltEbCX14DhQGEOc0_sPHrRLKNSmCo,18034
9
+ crypticorn/auth/client/exceptions.py,sha256=h0Uf70boJaADhffgwDC5bXtOneCeiRyaxWZXgE8OlgM,6393
10
+ crypticorn/auth/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ crypticorn/auth/client/rest.py,sha256=7ykLyiCyjtTiC1F-9JfrD79vaA831O_irNDmaRArnGg,6994
12
+ crypticorn/auth/client/api/__init__.py,sha256=c-MlPvmOXSsk_ragrcUe8WkOuCPTTpJ8maSp2sER0EU,339
13
+ crypticorn/auth/client/api/admin_api.py,sha256=SmChBoU6emc2q-AqH2yRAWFCsOKn2Uis2H9Z-_TGHwg,21215
14
+ crypticorn/auth/client/api/auth_api.py,sha256=InTxFQcjE0KWHJM_fT_4dwts5abiPUNE68csIcCSGmE,124169
15
+ crypticorn/auth/client/api/service_api.py,sha256=rAnJOot2xLgKY9BAaEv_KtsSUgHXbOD58jypyry7Hkg,12403
16
+ crypticorn/auth/client/api/user_api.py,sha256=sdjnFdTnZj7fEjH9BRvE6HKnq9z7fBqXYEmEs1wai-0,103473
17
+ crypticorn/auth/client/api/wallet_api.py,sha256=_WRT6b5E1dEI8nd2XXjFsFFrbjbO9OdFrOooSBb6nGs,68907
18
+ crypticorn/auth/client/models/__init__.py,sha256=8jrVj3WzG0EVTZCcSV7A7gGdK3CQa3YGJPoTh946HlI,4062
19
+ crypticorn/auth/client/models/add_wallet200_response.py,sha256=orw50N1bfr7qg9N8e73VmsvulFvBN0-8PMaR0ze79ks,2539
20
+ crypticorn/auth/client/models/add_wallet_request.py,sha256=lap0RG_tbW6wq2RHlgUNugI4s0lQq50OO0tXOvK637I,3184
21
+ crypticorn/auth/client/models/authorize_user200_response.py,sha256=fstTaffARzCe7woPYBuDqxzn-YYl1K1q4yQObGaXpq8,3361
22
+ crypticorn/auth/client/models/authorize_user200_response_auth.py,sha256=OQzmKNICdr7tHrlhEDIxagDZx7XuW8VO2U3OMsWIJOA,3208
23
+ crypticorn/auth/client/models/authorize_user_request.py,sha256=o_1Ms6npD_1dJQ6aYshEk9JPV7JIkmAmuRawDDPUoTc,3205
24
+ crypticorn/auth/client/models/create_api_key200_response.py,sha256=UGjZwITv2EdS7bbt55D0w2an6_uO4u6gYr-GihL9m80,2459
25
+ crypticorn/auth/client/models/create_api_key_request.py,sha256=tCy0T5zVzai9__v9wv8zjGirc3jOxRS6zYtuA-uUaR4,5423
26
+ crypticorn/auth/client/models/create_user_request.py,sha256=nq4t2R4ldqSsJUoVhLw9YocdUwatH4gQ-jdFz3jaqrg,3481
27
+ crypticorn/auth/client/models/get_api_keys200_response_inner.py,sha256=KcE5mVp4kTosKZHFTLbGUs6iFyoEjPuLY984GlO1UnM,5811
28
+ crypticorn/auth/client/models/list_wallets200_response.py,sha256=G2LQiThhtynkuDGFvIs-BowR38ut7cRbIeCzK4wMnPw,4732
29
+ crypticorn/auth/client/models/list_wallets200_response_balances_inner.py,sha256=acTJa8B5U8j3_wS1TUYXnprptqF_T4dlV-wVaQ5ZXig,4023
30
+ crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py,sha256=KrCHFXXfc6U61nDFsq26gRtQQnc2_tSjL2fwQOnBfzI,3603
31
+ crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py,sha256=TzkG_MjbKVEr9vWjxQEsUhKX6bTqL0uBkXKQ78k31-A,6088
32
+ crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py,sha256=PDrcXkFMXVv20n9RWzeIo84eYNSErzIwqbnLCzZ_pwc,6619
33
+ crypticorn/auth/client/models/list_wallets200_response_data_inner.py,sha256=jU8F7s4UaIYMRZr6YOVaUlY5AP6FlLYVxJsjdg9y8ao,2961
34
+ crypticorn/auth/client/models/list_wallets200_response_user_value.py,sha256=GxjIR4LsAquzeTbRs9HM-Kd0SV2VYQuetjGM59UuA_o,3821
35
+ crypticorn/auth/client/models/logout_default_response.py,sha256=CgxopP7vaACZXM0jfH3SULrrwDL4CN603-1euO8dM8c,3375
36
+ crypticorn/auth/client/models/logout_default_response_issues_inner.py,sha256=Z8Tf60jyEzsgIgP7T9k8wmXmeYwRTIiJpDwa3JL5SGs,2467
37
+ crypticorn/auth/client/models/oauth_callback200_response.py,sha256=vGPI-8re_1NDgH55WiZD09b4sP4q0N9b2lh4xUw1uis,3416
38
+ crypticorn/auth/client/models/oauth_callback200_response_user.py,sha256=YncwfKBFSEULtLI8sJhd-d8u2bnWRC_o7VRpUI8Kn7Q,2998
39
+ crypticorn/auth/client/models/refresh_token_info200_response.py,sha256=PP_dDiAkZbcnGeCea9laUhjKofBrfUrhyMDWLQZWCQY,3062
40
+ crypticorn/auth/client/models/refresh_token_info200_response_user_session.py,sha256=-hlOJn3XZXF1bDHYn2dTxmEZ-zuFJ_b9ZYi1xm1gmWQ,3450
41
+ crypticorn/auth/client/models/resend_verification_email_request.py,sha256=eoQD4xhOjZblz3JSvamnM0f0ALuk94HhmIqXUCK0KmI,2526
42
+ crypticorn/auth/client/models/revoke_user_tokens_request.py,sha256=lOA-0n9HBz9AsxGuoBuT2Axkhb9X4Ff8RkytUf583_s,2459
43
+ crypticorn/auth/client/models/rotate_tokens200_response.py,sha256=LhSgnQfdCqtxmpIM8oWN8KyFM0bnUeA3y7cMiEwZ2Go,3534
44
+ crypticorn/auth/client/models/token_info200_response.py,sha256=KFwn4oVmBR5JbwIGk0VXu0Vh9JCTRbBBmpqRXrjpWb0,2952
45
+ crypticorn/auth/client/models/unlink_wallet_request.py,sha256=dzYVVANju72DrzQSuKqGHpBv9V4Yv1wl7S42YqzFL98,2395
46
+ crypticorn/auth/client/models/update_user_request.py,sha256=eHXaMbXbM5YofcN5cl0fl7C-FBGqOpnS7ZzhEOoR7Ig,2826
47
+ crypticorn/auth/client/models/user_reset_password_request.py,sha256=9fkUUIpLyvk3YeWcvWL4DWidzenH1mss3L54J3kThuk,2638
48
+ crypticorn/auth/client/models/user_set_password_request.py,sha256=OSaIKJ_4EcwXvV-chXbRypD8dujMt08slP_CxPWEtiM,2640
49
+ crypticorn/auth/client/models/verify200_response.py,sha256=VO2faCFHFfcxCF6RWitV9JgL0ON1D6-xA8_q_5B1vD4,3605
50
+ crypticorn/auth/client/models/verify_email200_response.py,sha256=NyhA3kn7lhYsjujdtHdZEjeYTQ0BuVu277twqnYTN5A,3345
51
+ crypticorn/auth/client/models/verify_email200_response_auth.py,sha256=BmH0ZD7zrlZ6uwb1aBjQXCMnFcWtByTtHrFRBAVcUew,3227
52
+ crypticorn/auth/client/models/verify_email200_response_auth_auth.py,sha256=1QnPuAjUc4LhmFEMkveQFFa3vq4B1V3XpkR1G4R-8Wo,3657
53
+ crypticorn/auth/client/models/verify_email_request.py,sha256=W_X14qdTADduVwY4wxSNBPrHHDuiJinD0-sjyP1fkhg,2444
54
+ crypticorn/auth/client/models/verify_wallet_request.py,sha256=gFKkFXi6b45aUfyklFeHKNJVLxYXE3wR3PvF3JVI4Po,2671
55
+ crypticorn/auth/client/models/wallet_verified200_response.py,sha256=IXhtaD0CC6Jp9ZG6sgyRg-beIzrhFDuF_bQYOjNMdY0,2445
56
+ crypticorn/auth/client/models/whoami200_response.py,sha256=sFzrMXBn6npQwRsV3TJ_hDlFVbEolYJBaJDnrK5zvlM,2954
57
+ crypticorn/cli/__init__.py,sha256=bgMmlpRThjYcxXJ1U3UmLE8ODVT5olmFY1u69VOjthQ,69
58
+ crypticorn/cli/__main__.py,sha256=x9T4xS3U-qokGEzad7rTujmq4yjV5xcYSXgNsDFkvyo,253
59
+ crypticorn/cli/init.py,sha256=xefvOCjXOiSUPWHFDDv7DWDC0Ggs1JKxk7KPCXyMZnU,3729
60
+ crypticorn/cli/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ crypticorn/cli/templates/auth.py,sha256=Q1TxlA7qzhjvrqp1xz1aV2vGnj3DKFNN-VSl3o0B-dI,983
62
+ crypticorn/common/__init__.py,sha256=isHr_zq4HyI8hSrv2a44BT4EsQIZilxllfhHeTONNRo,421
63
+ crypticorn/common/auth.py,sha256=NKT3qnoQF_UYvHW_XS7YywvKd5RbbLv3EcMKnARn7U0,8627
64
+ crypticorn/common/decorators.py,sha256=pmnGYCIrLv59wZkDbvPyK9NJmgPJWW74LXTdIWSjOkY,1063
65
+ crypticorn/common/enums.py,sha256=RitDVqlG_HTe6tHT6bWusZNFCeYk1eQvJVH-7x3_Zlg,668
66
+ crypticorn/common/errors.py,sha256=FgUpSsegzhkseEwKS2moIoWFKrvCWUllXX9bdSo482w,22145
67
+ crypticorn/common/exceptions.py,sha256=svRxFsdeuEiIWPB7K4Nh1ouVTnROZXa_eWHnE7Gka0I,4455
68
+ crypticorn/common/mixins.py,sha256=LKPcNTR8uREeDGWTlWozNx7rS1mYdQVx1RllLhxIAsE,1640
69
+ crypticorn/common/scopes.py,sha256=UZqXqy_AJFna-L_O01aCXzV9IksrW--AIjsEMAnUl9U,1849
70
+ crypticorn/common/status_router.py,sha256=s7LY3aNQPhtDUgNWHRszfCQMl0Uh13li_jR8jeeolnw,1139
71
+ crypticorn/common/urls.py,sha256=3Gf1NU1XQYcOTjcdztG3bDAE98FVbgTK2QXzUe7tFVQ,878
72
+ crypticorn/common/utils.py,sha256=Kz2-I96MKIGKM18PHQ77VbKHLMGUvZG_jjj7xpQed8k,2138
73
+ crypticorn/hive/__init__.py,sha256=hRfTlEzEql4msytdUC_04vfaHzVKG5CGZle1M-9QFgY,81
74
+ crypticorn/hive/main.py,sha256=WUgsjs9p9zZ5NgPuD54m1u8dLnM8yaYCYHF51AH2IaE,665
75
+ crypticorn/hive/client/__init__.py,sha256=D0XGAY5mEs1xkwTwhsknol6Gjkufyt9ORRpuE2yfi6c,2190
76
+ crypticorn/hive/client/api_client.py,sha256=fDFsACK7hxXw_sgt3ZJVH2RplEdUhR0YZd4tsZA9P5Q,26869
77
+ crypticorn/hive/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
78
+ crypticorn/hive/client/configuration.py,sha256=J4tZF5m71BMOFE1rfWzgrBWEPQ-DQ-FByFJiNZ81W48,19105
79
+ crypticorn/hive/client/exceptions.py,sha256=IKuM8sbMtr3T9z-fOuePTJmheUFahzmyZ8iamFaUpgM,6374
80
+ crypticorn/hive/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ crypticorn/hive/client/rest.py,sha256=VhXkE7R3y1RD0QmbvIwmsk-LP_DmOei_zd9YiIXer28,6975
82
+ crypticorn/hive/client/api/__init__.py,sha256=y0KYdyqWZTjlf6IKASYmLdUs9a2aiFMHrfQO_V_-ZUw,223
83
+ crypticorn/hive/client/api/data_api.py,sha256=9WpN0R1eI6Bq7KfJwm7R_fJ0IYIDoBIehQiUG3sb4kE,22351
84
+ crypticorn/hive/client/api/models_api.py,sha256=BKnx6xbEjk6ug05xGaQA6r8KHJHwHojz93VF36h8xLg,62293
85
+ crypticorn/hive/client/api/status_api.py,sha256=3ZZ9e1duL9Oz8gWvQQMryUevuRY_ERMPpClW8gY2THE,28714
86
+ crypticorn/hive/client/models/__init__.py,sha256=PmiAjoetM6MVwCWwqrX394IU3qoZItDG-57CtwmcOCc,1398
87
+ crypticorn/hive/client/models/coins.py,sha256=9fTwC6_7mMS2dz4cUZoLYWloOpAjCr-KySGYrVZO_IE,795
88
+ crypticorn/hive/client/models/data_download_response.py,sha256=ZipGpZW_BPmjLeHimiveacWc3R27afjA2c8R7xXAlAE,3425
89
+ crypticorn/hive/client/models/data_info.py,sha256=2OCOe3yNwDyKLRusUwzaykvTQF7-Zflr1QW19B9R9kg,3549
90
+ crypticorn/hive/client/models/data_value_value_value_inner.py,sha256=fMkZWwAwrdmTDjwD9PVNIh4WzZ_nFACD57B7OPKO4n4,4987
91
+ crypticorn/hive/client/models/data_version.py,sha256=MMgH6JyFdcpAc6mzs4j13Gumd0vDTw3UEOsKFSOcsSg,668
92
+ crypticorn/hive/client/models/download_links.py,sha256=bmxzXwpGxlFwoOPPsKFtEGdotzP_04WHQvzuj2mtu-Q,2639
93
+ crypticorn/hive/client/models/evaluation.py,sha256=WeLJA4tCS4W_CnGxRAgrxySWko3QPYzpxeVDuYyLPgM,2608
94
+ crypticorn/hive/client/models/evaluation_response.py,sha256=iwE1G1_EOFga6Zztf1A8z6TNiNc_R06r2lKLHIr5_6A,2526
95
+ crypticorn/hive/client/models/exception_detail.py,sha256=xLvJvILpIQl3Nl0LYtDPXsZcIouWIUB-0fqoUAaqiaU,3657
96
+ crypticorn/hive/client/models/feature_size.py,sha256=4lICZHaNU9eLkHzcTaquajSrcOGlBBRFvEKySPp89bc,705
97
+ crypticorn/hive/client/models/model.py,sha256=0CyvuMeNbaxY8QpPqCZo0jli0v9C6yAVnckBV2cSvys,4554
98
+ crypticorn/hive/client/models/model_create.py,sha256=f6Ayw3KD39qw0qtvYF77K3huy7_Tmzv8pDyyQ_ooAG8,2828
99
+ crypticorn/hive/client/models/model_status.py,sha256=-2H6CHw6jhJgv4VJgwr1sgN2NtT1m7LGCX7L8ULTxEQ,685
100
+ crypticorn/hive/client/models/model_update.py,sha256=iO-VtYt0aRzj9z_GeIUK2OVNg9yvM01OUVfWyCA36fc,2413
101
+ crypticorn/hive/client/models/target.py,sha256=eTDXDO4Vv1bB-cFrH7FuEeY7Eaf0YDIrQgba9TW7Y6s,697
102
+ crypticorn/hive/client/models/target_type.py,sha256=rv9ub_0BM5DAR8jtGAZKbTO7RObEu-86kPT4dTS-OuM,672
103
+ crypticorn/klines/__init__.py,sha256=9UUW013uZ5x4evz5zRUxbNid-6O9WAPPYvPZIHpAwms,87
104
+ crypticorn/klines/main.py,sha256=uQ7Ds_pQZ68o3uvSUOd7J0NEyy9--88dKXhzzm0F9dI,2754
105
+ crypticorn/klines/client/__init__.py,sha256=YLtas-sCXyq543ujKIWIT73qfQ1D97stsztr1AWjhSc,2222
106
+ crypticorn/klines/client/api_client.py,sha256=XYk_eoVRHxQDoTKJJwMpO__LbU1DQtpMikBTyulJrvE,26925
107
+ crypticorn/klines/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
108
+ crypticorn/klines/client/configuration.py,sha256=BbSjKLJEKc7v3aY4BX1G9U6nac_Krqi4msBkBZQ5tKg,19153
109
+ crypticorn/klines/client/exceptions.py,sha256=UQOoeVgvSQknAxeG-nfg0629MfAQH0IpDBwnB0t4Qb8,6418
110
+ crypticorn/klines/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
+ crypticorn/klines/client/rest.py,sha256=M3VBl9SLU3D0L3DBX3Nr7sgL0Moh1G2mJX8KD_yyKbY,7021
112
+ crypticorn/klines/client/api/__init__.py,sha256=LFjvjTTg79by1SCVX1jjyjQUa-4sj7pUwa1UYQ1JXo0,459
113
+ crypticorn/klines/client/api/change_in_timeframe_api.py,sha256=e0q50TKN6cOh5Kuiah355RMVl9COmnezUo06zzm18lQ,12768
114
+ crypticorn/klines/client/api/funding_rates_api.py,sha256=EoG3YlB1g5yY69wGHGEE1RvdZgPbUaEmCN8uSh7Lp28,13843
115
+ crypticorn/klines/client/api/ohlcv_data_api.py,sha256=trMw6pUBTO3qwyPcKUtVepXnfHbPHBiqyCACY_jxFTw,16390
116
+ crypticorn/klines/client/api/status_api.py,sha256=x1dozAmylT5pLK2rvL-IBd8fDKgMjQkVn-XDxER02dw,28764
117
+ crypticorn/klines/client/api/symbols_api.py,sha256=OfrTMlJy547mk0T2HbRYVlDbQi1wRlNDNoFv81k_VbQ,10960
118
+ crypticorn/klines/client/api/udf_api.py,sha256=0vdczpzBLfAB8667iBLs5gK-0HJtWUwHHZmMIConclU,60949
119
+ crypticorn/klines/client/models/__init__.py,sha256=R3WUYXWXvI9yGxAOIdm-Irq_xROr6uuxI0d27RhQ8pI,1176
120
+ crypticorn/klines/client/models/change_in_timeframe.py,sha256=NBt_u2n5U1P1S8c28edokdbqyvTOYUQ7dYgvi2g_Ci8,2554
121
+ crypticorn/klines/client/models/exception_detail.py,sha256=hULFn3y6aM5mjRjg5m3qdVUzOTeZKWUSRMvIXHJVEQo,3701
122
+ crypticorn/klines/client/models/funding_rate.py,sha256=91Ok500h7lBBefTYTtcNoIG-lLQc6MNke91pJzd7rK8,2727
123
+ crypticorn/klines/client/models/ohlcv_history.py,sha256=dKjy5SJQw9a4-8ABVMdMiis3VD1gpDBkUpMqFO3r6wA,3292
124
+ crypticorn/klines/client/models/resolution.py,sha256=xmyK99K0R7-8XEz3vEjEfPUT70BtRjbSHtsTs6wheFE,761
125
+ crypticorn/klines/client/models/search_symbol.py,sha256=QYoi4VHcxkD6kBJCsjQHGsHscFy9XjuOkwuX3rMhEdo,2812
126
+ crypticorn/klines/client/models/sort_direction.py,sha256=wFU7tm4M9bgR55rgN2aKLBPISnG9xKGTEXqcNV4fkSw,707
127
+ crypticorn/klines/client/models/symbol_group.py,sha256=E_BxSCHzZQCInnakWw1Q5VI6ysHdjMR3SuZRJ9p0Ukk,2437
128
+ crypticorn/klines/client/models/symbol_info.py,sha256=aAdze6VgvTqnfhTelP1fVzCJkh5L7OUwcWN7J0nCRkc,3998
129
+ crypticorn/klines/client/models/symbol_type.py,sha256=uOEqlQJ714fa0SEYOxzCOx9cG-q1OoP_rZ5_nU461Vc,2449
130
+ crypticorn/klines/client/models/timeframe.py,sha256=bSZJz3Q78V1RAnm3ZDtGBzFOnDKE3Pc5A0eP3ky3KaI,760
131
+ crypticorn/klines/client/models/udf_config.py,sha256=3VxMqMJb7AqwxWyeM1SxEd4jp2r-iRZppVRW7RHR7iY,5066
132
+ crypticorn/metrics/__init__.py,sha256=t7FrHV5PaVTka90eIxDgOaWvOiyznSStcUanSbLov2o,126
133
+ crypticorn/metrics/main.py,sha256=Gg-kF8zgGs4oSl2lqH8ef-3QAEsAjOld0N-_nXDuhdo,3501
134
+ crypticorn/metrics/client/__init__.py,sha256=IcYZIuKVRCnesSbJgvn_-Wg1it5vY0goYwL-pNdVfh0,1727
135
+ crypticorn/metrics/client/api_client.py,sha256=pGWJuO-mgxlUdhJGwkScf7CviGzjDrmUAiU0LXasQY4,26934
136
+ crypticorn/metrics/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
137
+ crypticorn/metrics/client/configuration.py,sha256=wA1hBWEINMM_AlZg-DAv1AelmkjBERB5d2gA66aEwSM,19158
138
+ crypticorn/metrics/client/exceptions.py,sha256=UegnYftFlQDXAQv8BmD20yRzTtWpjTHcuOymTBWmgeE,6421
139
+ crypticorn/metrics/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
+ crypticorn/metrics/client/rest.py,sha256=pWeYnpTfTV7L5U6Kli3b7i8VrmqdG8sskqSnTHPIoQo,7025
141
+ crypticorn/metrics/client/api/__init__.py,sha256=e8EG4VJkULLIEthZyPXjOfLi_4dKGi_KGRj2gQuYd_8,506
142
+ crypticorn/metrics/client/api/exchanges_api.py,sha256=EDw4wzYV20fHPW1pUpfCyXR1NzIJICjBz6ugOcf_3Oo,40003
143
+ crypticorn/metrics/client/api/indicators_api.py,sha256=v2cI4NIzsg2QyBeKPMHfcGiatDTJsP6XX7dM1RwdGEY,25856
144
+ crypticorn/metrics/client/api/logs_api.py,sha256=8umrlamZUV1DbyKpMZHkoh5q0et_1KmaxWx93dcijf4,13480
145
+ crypticorn/metrics/client/api/marketcap_api.py,sha256=-ETEtSM50DND8hG_k_FI-9MaXMNbWIarSieMka2w-8k,50855
146
+ crypticorn/metrics/client/api/markets_api.py,sha256=9GDMz9NTdJ1OIWckfuFfjgid6rJy8NWkj0Y4e00BM6c,24135
147
+ crypticorn/metrics/client/api/status_api.py,sha256=rnXvModJzkQFF5ta7fkxyxpelHD_9ksUufs4W-yzn7w,28770
148
+ crypticorn/metrics/client/api/tokens_api.py,sha256=Z885EFuNOPLt5jziSynZsnvYzve-V_ltY6ypW6H7NCw,11381
149
+ crypticorn/metrics/client/models/__init__.py,sha256=szlfEBonMQMQdyWP-3mI6cJ-P5MyZTSHtLk8QVjQtcg,625
150
+ crypticorn/metrics/client/models/exception_detail.py,sha256=s2dJA_PBMYppDexprkmGI7u3kBX-HVIcwYhTxlT4Yqw,3704
151
+ crypticorn/metrics/client/models/severity.py,sha256=Bwls2jjCMP2lKc-_67d5WZbGPAebUEPge7a82iUf4Qs,731
152
+ crypticorn/metrics/client/models/time_interval.py,sha256=8bHhMNt56xVGvJi5xNFMrAkAZFRKfym1UkeGoM2H0j8,772
153
+ crypticorn/metrics/client/models/trading_status.py,sha256=_S-KAyuCJsLLY0UTcNKkhLWoPJS-ywf7y3yTdhIuF0w,746
154
+ crypticorn/pay/__init__.py,sha256=ux-B-YbNetpTlZTb2fijuGUOEmSm4IB0fYtieGnVDBg,78
155
+ crypticorn/pay/main.py,sha256=-e0YvDBe73b2hRkAh65hFmGdqjsaQcXTHtLyXlM_YM0,635
156
+ crypticorn/pay/client/__init__.py,sha256=yQNTTvME58c4yP0GeYso18Vmp5WFgI_hF3nfG-j-pog,1920
157
+ crypticorn/pay/client/api_client.py,sha256=HjmMJeQ4hcDNWm5I9LEQtZEGD1hPeyQU2y_SLmgD9mE,26870
158
+ crypticorn/pay/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
159
+ crypticorn/pay/client/configuration.py,sha256=-PRnl7AEOWSGACFOzIF42EMTZ8iGluXwhZvqAhSRXPI,19110
160
+ crypticorn/pay/client/exceptions.py,sha256=hbV_qDEzFJ2GVU2hVi6DqQMFztSBH1M8Nnuzou5kW-g,6381
161
+ crypticorn/pay/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ crypticorn/pay/client/rest.py,sha256=GfZLzoQiqFOYC1jIwCuxeY9XCOxlpu-Cvwn2Tu3Q1n0,6981
163
+ crypticorn/pay/client/api/__init__.py,sha256=vbisPmBd4c5G3_MHAlInKeu1obSr8witdtwxC43BnN8,302
164
+ crypticorn/pay/client/api/now_payments_api.py,sha256=3BouXcha-xARDX6_soa5egqRszEO8f8QhN4WjOpP8tk,30346
165
+ crypticorn/pay/client/api/payments_api.py,sha256=XlCNkD6s_6nH8fktneoqMq4ZTHB9YkotVqX_edy614o,33820
166
+ crypticorn/pay/client/api/products_api.py,sha256=zh8y_3YgpCUZT7wAGAR7lDheR98y53YGJHwOU6VJQjw,33586
167
+ crypticorn/pay/client/api/status_api.py,sha256=iv78XeKV11rKNIszd0mmp5e9gL0sivjhipxkMQ52C6o,28718
168
+ crypticorn/pay/client/models/__init__.py,sha256=9oOXl7NGOQykvucMofo5y3C7pH1Ee9ATpGE3FWT99Yg,1058
169
+ crypticorn/pay/client/models/exception_detail.py,sha256=RKqu-lNMwpLu_lcLJe5WmSFCcsaHFKCDS8uCcpcd6L8,3664
170
+ crypticorn/pay/client/models/now_create_invoice_req.py,sha256=9MKrW4ETKdQLFuGUXcyqUwFkQ_4utWrhGvLzUxOoFws,6644
171
+ crypticorn/pay/client/models/now_create_invoice_res.py,sha256=zsdEAJjyZCmZdaag6Jr6XdLJIKZkOrx03K8t0IY7aTU,6957
172
+ crypticorn/pay/client/models/payment.py,sha256=4cp0FJ9EYGcUXkUA7127syiSG_OR6_yg6tmE3XQNx8w,3538
173
+ crypticorn/pay/client/models/payment_status.py,sha256=S3-Xnvumq-c0aNkx3HzfsxglTf6E1-5HgjJTHX_d9QE,823
174
+ crypticorn/pay/client/models/product_create.py,sha256=lY_7nOdUrKwZwEr22MnXk-28Hk7ZeeTlnDJMl9kMf9g,3543
175
+ crypticorn/pay/client/models/product_read.py,sha256=H2DQJNlO7fpL8R5KScprmn0-23orEazK2skr7c-KBHk,3647
176
+ crypticorn/pay/client/models/product_sub_read.py,sha256=5B0W9-tEypWUpmjUyvuaT_bgVq5wRsDcK-rWQDdU3wY,3156
177
+ crypticorn/pay/client/models/product_update.py,sha256=dM27vbcHRgtu3YrFgux3ufg8QMN5ta6OnGGRIe8Wrjk,4441
178
+ crypticorn/pay/client/models/scope.py,sha256=6XPD2CEFqTw-J8FadRBmiuHUprUgIx4T4HBhPQbX2GI,2301
179
+ crypticorn/pay/client/models/services.py,sha256=xN6qNVzXfoHz585HTAD3s7dCb4wA_w7skj8MH65ov3w,655
180
+ crypticorn/trade/__init__.py,sha256=QzScH9n-ly3QSaBSpPP7EqYwhdzDqYCZJs0-AhEhrsY,84
181
+ crypticorn/trade/main.py,sha256=h-lh8ESY0E5lKB5bg-D41TPxiNND8g4pFAd7updpd0Y,1074
182
+ crypticorn/trade/client/__init__.py,sha256=-KjY8hKc4WdMIJhPYtpG23d8QO7clLAcPlq8zrLvH9k,2951
183
+ crypticorn/trade/client/api_client.py,sha256=mXsNTm6HBLW26-gIxy0UnXWeMfB5mDbIcN94OsWb07s,26878
184
+ crypticorn/trade/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
185
+ crypticorn/trade/client/configuration.py,sha256=N3KrFhVth2517_Ns5jZe9MEU1bfUFTDuVbCnyIrdp6E,19110
186
+ crypticorn/trade/client/exceptions.py,sha256=xhMWrRAGZcmd_pIMBWz53hlxTLheeE5DTWOglkd8K34,6377
187
+ crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
+ crypticorn/trade/client/rest.py,sha256=Ipp9qhBYeFs2m7XwtF68UvW_s1I5k-_bz-0_z3s4Mcs,6979
189
+ crypticorn/trade/client/api/__init__.py,sha256=s6jcukWHyom8Bp9Vj0yrOL37-dNPNvdvMK_aXwpKZzc,668
190
+ crypticorn/trade/client/api/api_keys_api.py,sha256=UhIS05kjzyzgqwG98ROeKJOt6cBx3Vlh1M30WoNF0Eg,50704
191
+ crypticorn/trade/client/api/bots_api.py,sha256=MsEf8wM1AFeOGvOEo7sDXTtDTZZEpgMG9shmQRSBOcI,41390
192
+ crypticorn/trade/client/api/exchanges_api.py,sha256=bSE6IrOOaDmV0mIi-rNGR0TpORrfWJCv5bBjJpsH32E,10033
193
+ crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=s2F6Yp5I7jGz3QFjP_nIvHaXoLmlY7R3tTfLKUpprXE,49983
194
+ crypticorn/trade/client/api/notifications_api.py,sha256=g3cpqF6MQUzNkQpe5Izdyumai6FvLbA-0Tl97CykBM0,60718
195
+ crypticorn/trade/client/api/orders_api.py,sha256=lJJG7MlBni6R3m0MqQnPKQFZTinKJ05CEw_ChXPfEzg,11013
196
+ crypticorn/trade/client/api/status_api.py,sha256=aHUkNXggfvj2QK_aREHKe6iOSI8E_OUo3Y82QXLvIi0,28720
197
+ crypticorn/trade/client/api/strategies_api.py,sha256=fh8GkgjGmTz53iRXG_iqqzGJuawONHK0_mt-9QQKMak,41862
198
+ crypticorn/trade/client/api/trading_actions_api.py,sha256=1JD-XiNxzivNzLKo3-4hh59heK3D3K9NfhRTLkAQswU,31955
199
+ crypticorn/trade/client/models/__init__.py,sha256=bmCpFvgcrvP1qgOL31fejmx-TvrMFu5bmQWwyS4cnlk,1705
200
+ crypticorn/trade/client/models/action_model.py,sha256=9ciY2J05dzwguLAFsK0iuzk9frMMqVLOw0tQZYfFcw8,9961
201
+ crypticorn/trade/client/models/bot_model.py,sha256=7c7uIxrddKZpKyIyRKG63JebA8ei8OlDoo4Q8us7FeM,5544
202
+ crypticorn/trade/client/models/bot_status.py,sha256=kMhMPU_iakEnkNoiPJd7HTlJ_PNHRFoHPa2iqHHl6bE,718
203
+ crypticorn/trade/client/models/exception_detail.py,sha256=DCQKPfODxN05nd5RMbGeskzUgn-T4aBW9EfczB3iUCo,3660
204
+ crypticorn/trade/client/models/exchange_key_model.py,sha256=yPwwzSx_NnXGC8kLh3KDMxy_27GPV72AzgWtH5RIXfM,4911
205
+ crypticorn/trade/client/models/execution_ids.py,sha256=uojZivh4ntx5a_w0x5uJJQZZE8xV2JnTQzkkzqu0vZ8,2875
206
+ crypticorn/trade/client/models/futures_balance.py,sha256=_o5At28PFNfui7fhvmAoWqL80Bs9A8Ln_7TQM-5RHA8,4103
207
+ crypticorn/trade/client/models/futures_trading_action.py,sha256=_XmYCyzmWU-RIeyP8t2vacd2RSWC93SCe8ObQLaJuJg,9328
208
+ crypticorn/trade/client/models/margin_mode.py,sha256=2wwXVowoRi6n930NOl1FIvLdCwtUmm9HlxAZVkmOKC0,689
209
+ crypticorn/trade/client/models/notification_model.py,sha256=sUHIr4YQfCdiEzZs-dU0MDWPBoQlwUru58Oq154q_7M,4545
210
+ crypticorn/trade/client/models/order_model.py,sha256=mawcJBkM63cE4jg_u4Rid7brUuOiWMAiOiUcf6M6uss,11901
211
+ crypticorn/trade/client/models/order_status.py,sha256=Bu4bIRiivwHm0tqM4TC9WcRTRLU_yX3b7I5vootdAbs,764
212
+ crypticorn/trade/client/models/post_futures_action.py,sha256=pDIfbkrVV-GrPI3EU8nDcaWbrMbjsU0MJcjuRudwZpU,3035
213
+ crypticorn/trade/client/models/spot_trading_action.py,sha256=xf2gxtB8k6YT3snNmeCFmqdszK-ZLZwXZU5qgI96LlQ,8469
214
+ crypticorn/trade/client/models/strategy_exchange_info.py,sha256=DmJMkHQwCHm1zQtHj--KTTqVJNebsX4zNgoFwNA6uZI,2704
215
+ crypticorn/trade/client/models/strategy_model_input.py,sha256=ala19jARyfA5ysys5DU8-hbpNVLOcbeF2aZZvl9dX9g,5639
216
+ crypticorn/trade/client/models/strategy_model_output.py,sha256=2o2lhbgUSTznowpMLEHF1Ex9TG9oRmzlCIb-gXqo7_s,5643
217
+ crypticorn/trade/client/models/tpsl.py,sha256=C2KgTIZs-a8W4msdaXgBKJcwtA-o5wR4rBauRP-iQxU,4317
218
+ crypticorn/trade/client/models/trading_action_type.py,sha256=pGq_TFLMPfYFizYP-xKgEC1ZF4U3lGdJYoGa_ZH2x-Q,769
219
+ crypticorn-2.5.3.dist-info/METADATA,sha256=_59Ag8hzRsKPMM1-y7OBnmYLFV49aSk0mWm7Ru6rP_w,6247
220
+ crypticorn-2.5.3.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
221
+ crypticorn-2.5.3.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
222
+ crypticorn-2.5.3.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
223
+ crypticorn-2.5.3.dist-info/RECORD,,
@@ -1,99 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Hive AI API
5
-
6
- API for Hive AI model training and evaluation
7
-
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- from __future__ import annotations
16
- import pprint
17
- import re # noqa: F401
18
- import json
19
-
20
- from pydantic import BaseModel, ConfigDict
21
- from typing import Any, ClassVar, Dict, List, Optional
22
- from crypticorn.hive.client.models.validation_error import ValidationError
23
- from typing import Optional, Set
24
- from typing_extensions import Self
25
-
26
-
27
- class HTTPValidationError(BaseModel):
28
- """
29
- HTTPValidationError
30
- """ # noqa: E501
31
-
32
- detail: Optional[List[ValidationError]] = None
33
- __properties: ClassVar[List[str]] = ["detail"]
34
-
35
- model_config = ConfigDict(
36
- populate_by_name=True,
37
- validate_assignment=True,
38
- protected_namespaces=(),
39
- )
40
-
41
- def to_str(self) -> str:
42
- """Returns the string representation of the model using alias"""
43
- return pprint.pformat(self.model_dump(by_alias=True))
44
-
45
- def to_json(self) -> str:
46
- """Returns the JSON representation of the model using alias"""
47
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
- return json.dumps(self.to_dict())
49
-
50
- @classmethod
51
- def from_json(cls, json_str: str) -> Optional[Self]:
52
- """Create an instance of HTTPValidationError from a JSON string"""
53
- return cls.from_dict(json.loads(json_str))
54
-
55
- def to_dict(self) -> Dict[str, Any]:
56
- """Return the dictionary representation of the model using alias.
57
-
58
- This has the following differences from calling pydantic's
59
- `self.model_dump(by_alias=True)`:
60
-
61
- * `None` is only added to the output dict for nullable fields that
62
- were set at model initialization. Other fields with value `None`
63
- are ignored.
64
- """
65
- excluded_fields: Set[str] = set([])
66
-
67
- _dict = self.model_dump(
68
- by_alias=True,
69
- exclude=excluded_fields,
70
- exclude_none=True,
71
- )
72
- # override the default output from pydantic by calling `to_dict()` of each item in detail (list)
73
- _items = []
74
- if self.detail:
75
- for _item_detail in self.detail:
76
- if _item_detail:
77
- _items.append(_item_detail.to_dict())
78
- _dict["detail"] = _items
79
- return _dict
80
-
81
- @classmethod
82
- def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
83
- """Create an instance of HTTPValidationError from a dict"""
84
- if obj is None:
85
- return None
86
-
87
- if not isinstance(obj, dict):
88
- return cls.model_validate(obj)
89
-
90
- _obj = cls.model_validate(
91
- {
92
- "detail": (
93
- [ValidationError.from_dict(_item) for _item in obj["detail"]]
94
- if obj.get("detail") is not None
95
- else None
96
- )
97
- }
98
- )
99
- return _obj
@@ -1,105 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Hive AI API
5
-
6
- API for Hive AI model training and evaluation
7
-
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- from __future__ import annotations
16
- import pprint
17
- import re # noqa: F401
18
- import json
19
-
20
- from pydantic import BaseModel, ConfigDict, StrictStr
21
- from typing import Any, ClassVar, Dict, List
22
- from crypticorn.hive.client.models.validation_error_loc_inner import (
23
- ValidationErrorLocInner,
24
- )
25
- from typing import Optional, Set
26
- from typing_extensions import Self
27
-
28
-
29
- class ValidationError(BaseModel):
30
- """
31
- ValidationError
32
- """ # noqa: E501
33
-
34
- loc: List[ValidationErrorLocInner]
35
- msg: StrictStr
36
- type: StrictStr
37
- __properties: ClassVar[List[str]] = ["loc", "msg", "type"]
38
-
39
- model_config = ConfigDict(
40
- populate_by_name=True,
41
- validate_assignment=True,
42
- protected_namespaces=(),
43
- )
44
-
45
- def to_str(self) -> str:
46
- """Returns the string representation of the model using alias"""
47
- return pprint.pformat(self.model_dump(by_alias=True))
48
-
49
- def to_json(self) -> str:
50
- """Returns the JSON representation of the model using alias"""
51
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
- return json.dumps(self.to_dict())
53
-
54
- @classmethod
55
- def from_json(cls, json_str: str) -> Optional[Self]:
56
- """Create an instance of ValidationError from a JSON string"""
57
- return cls.from_dict(json.loads(json_str))
58
-
59
- def to_dict(self) -> Dict[str, Any]:
60
- """Return the dictionary representation of the model using alias.
61
-
62
- This has the following differences from calling pydantic's
63
- `self.model_dump(by_alias=True)`:
64
-
65
- * `None` is only added to the output dict for nullable fields that
66
- were set at model initialization. Other fields with value `None`
67
- are ignored.
68
- """
69
- excluded_fields: Set[str] = set([])
70
-
71
- _dict = self.model_dump(
72
- by_alias=True,
73
- exclude=excluded_fields,
74
- exclude_none=True,
75
- )
76
- # override the default output from pydantic by calling `to_dict()` of each item in loc (list)
77
- _items = []
78
- if self.loc:
79
- for _item_loc in self.loc:
80
- if _item_loc:
81
- _items.append(_item_loc.to_dict())
82
- _dict["loc"] = _items
83
- return _dict
84
-
85
- @classmethod
86
- def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
87
- """Create an instance of ValidationError from a dict"""
88
- if obj is None:
89
- return None
90
-
91
- if not isinstance(obj, dict):
92
- return cls.model_validate(obj)
93
-
94
- _obj = cls.model_validate(
95
- {
96
- "loc": (
97
- [ValidationErrorLocInner.from_dict(_item) for _item in obj["loc"]]
98
- if obj.get("loc") is not None
99
- else None
100
- ),
101
- "msg": obj.get("msg"),
102
- "type": obj.get("type"),
103
- }
104
- )
105
- return _obj