crypticorn 1.0.2rc3__tar.gz → 2.0.0__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 (282) hide show
  1. crypticorn-2.0.0/PKG-INFO +74 -0
  2. crypticorn-2.0.0/README.md +34 -0
  3. crypticorn-2.0.0/crypticorn/__init__.py +8 -0
  4. crypticorn-2.0.0/crypticorn/auth/__init__.py +2 -0
  5. crypticorn-2.0.0/crypticorn/auth/client/__init__.py +112 -0
  6. crypticorn-2.0.0/crypticorn/auth/client/api/__init__.py +8 -0
  7. crypticorn-2.0.0/crypticorn/auth/client/api/admin_api.py +522 -0
  8. crypticorn-2.0.0/crypticorn/auth/client/api/auth_api.py +2089 -0
  9. crypticorn-2.0.0/crypticorn/auth/client/api/service_api.py +309 -0
  10. crypticorn-2.0.0/crypticorn/auth/client/api/user_api.py +2540 -0
  11. crypticorn-2.0.0/crypticorn/auth/client/api/wallet_api.py +1698 -0
  12. crypticorn-2.0.0/crypticorn/auth/client/api_client.py +758 -0
  13. {crypticorn-1.0.2rc3/crypticorn/klines → crypticorn-2.0.0/crypticorn/auth}/client/api_response.py +2 -3
  14. {crypticorn-1.0.2rc3/crypticorn/trade → crypticorn-2.0.0/crypticorn/auth}/client/configuration.py +74 -64
  15. crypticorn-2.0.0/crypticorn/auth/client/exceptions.py +220 -0
  16. crypticorn-2.0.0/crypticorn/auth/client/models/__init__.py +91 -0
  17. crypticorn-2.0.0/crypticorn/auth/client/models/add_wallet200_response.py +86 -0
  18. crypticorn-2.0.0/crypticorn/auth/client/models/add_wallet_request.py +107 -0
  19. crypticorn-2.0.0/crypticorn/auth/client/models/authorize_user200_response.py +107 -0
  20. crypticorn-2.0.0/crypticorn/auth/client/models/authorize_user200_response_auth.py +101 -0
  21. crypticorn-2.0.0/crypticorn/auth/client/models/authorize_user_request.py +96 -0
  22. crypticorn-2.0.0/crypticorn/auth/client/models/create_user_request.py +114 -0
  23. crypticorn-2.0.0/crypticorn/auth/client/models/list_wallets200_response.py +137 -0
  24. crypticorn-2.0.0/crypticorn/auth/client/models/list_wallets200_response_balances_inner.py +115 -0
  25. crypticorn-2.0.0/crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +115 -0
  26. crypticorn-2.0.0/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +168 -0
  27. crypticorn-2.0.0/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +191 -0
  28. crypticorn-2.0.0/crypticorn/auth/client/models/list_wallets200_response_data_inner.py +102 -0
  29. crypticorn-2.0.0/crypticorn/auth/client/models/list_wallets200_response_user_value.py +118 -0
  30. crypticorn-2.0.0/crypticorn/auth/client/models/logout_default_response.py +108 -0
  31. crypticorn-2.0.0/crypticorn/auth/client/models/logout_default_response_issues_inner.py +83 -0
  32. crypticorn-2.0.0/crypticorn/auth/client/models/refresh_token_info200_response.py +97 -0
  33. crypticorn-2.0.0/crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +105 -0
  34. crypticorn-2.0.0/crypticorn/auth/client/models/resend_verification_email_request.py +84 -0
  35. crypticorn-2.0.0/crypticorn/auth/client/models/revoke_user_tokens_request.py +83 -0
  36. crypticorn-2.0.0/crypticorn/auth/client/models/rotate_tokens200_response.py +110 -0
  37. crypticorn-2.0.0/crypticorn/auth/client/models/token_info200_response.py +97 -0
  38. crypticorn-2.0.0/crypticorn/auth/client/models/unlink_wallet_request.py +83 -0
  39. crypticorn-2.0.0/crypticorn/auth/client/models/update_user_request.py +93 -0
  40. crypticorn-2.0.0/crypticorn/auth/client/models/user_reset_password_request.py +87 -0
  41. crypticorn-2.0.0/crypticorn/auth/client/models/user_set_password_request.py +89 -0
  42. crypticorn-2.0.0/crypticorn/auth/client/models/verify200_response.py +110 -0
  43. crypticorn-2.0.0/crypticorn/auth/client/models/verify_email200_response.py +107 -0
  44. crypticorn-2.0.0/crypticorn/auth/client/models/verify_email200_response_auth.py +101 -0
  45. crypticorn-2.0.0/crypticorn/auth/client/models/verify_email200_response_auth_auth.py +110 -0
  46. crypticorn-2.0.0/crypticorn/auth/client/models/verify_email_request.py +83 -0
  47. crypticorn-2.0.0/crypticorn/auth/client/models/verify_wallet_request.py +91 -0
  48. crypticorn-2.0.0/crypticorn/auth/client/models/wallet_verified200_response.py +83 -0
  49. crypticorn-2.0.0/crypticorn/auth/client/models/whoami200_response.py +104 -0
  50. crypticorn-2.0.0/crypticorn/auth/client/rest.py +195 -0
  51. crypticorn-2.0.0/crypticorn/auth/main.py +45 -0
  52. crypticorn-2.0.0/crypticorn/client.py +54 -0
  53. crypticorn-2.0.0/crypticorn/common/__init__.py +5 -0
  54. crypticorn-2.0.0/crypticorn/common/auth.py +43 -0
  55. crypticorn-2.0.0/crypticorn/common/auth_client.py +163 -0
  56. crypticorn-2.0.0/crypticorn/common/errors.py +432 -0
  57. crypticorn-2.0.0/crypticorn/common/scopes.py +29 -0
  58. crypticorn-2.0.0/crypticorn/common/urls.py +25 -0
  59. crypticorn-2.0.0/crypticorn/hive/__init__.py +2 -0
  60. crypticorn-2.0.0/crypticorn/hive/client/__init__.py +57 -0
  61. crypticorn-2.0.0/crypticorn/hive/client/api/__init__.py +6 -0
  62. crypticorn-2.0.0/crypticorn/hive/client/api/data_api.py +594 -0
  63. crypticorn-2.0.0/crypticorn/hive/client/api/models_api.py +1680 -0
  64. crypticorn-2.0.0/crypticorn/hive/client/api/status_api.py +263 -0
  65. crypticorn-2.0.0/crypticorn/hive/client/api_client.py +758 -0
  66. {crypticorn-1.0.2rc3/crypticorn/trade → crypticorn-2.0.0/crypticorn/hive}/client/api_response.py +2 -3
  67. crypticorn-2.0.0/crypticorn/hive/client/configuration.py +612 -0
  68. crypticorn-2.0.0/crypticorn/hive/client/exceptions.py +220 -0
  69. crypticorn-2.0.0/crypticorn/hive/client/models/__init__.py +38 -0
  70. crypticorn-2.0.0/crypticorn/hive/client/models/coins.py +44 -0
  71. crypticorn-2.0.0/crypticorn/hive/client/models/data_download_response.py +113 -0
  72. crypticorn-2.0.0/crypticorn/hive/client/models/data_info.py +115 -0
  73. crypticorn-2.0.0/crypticorn/hive/client/models/data_value_value_value_inner.py +154 -0
  74. crypticorn-2.0.0/crypticorn/hive/client/models/data_version.py +35 -0
  75. crypticorn-2.0.0/crypticorn/hive/client/models/download_links.py +91 -0
  76. crypticorn-2.0.0/crypticorn/hive/client/models/evaluation.py +86 -0
  77. crypticorn-2.0.0/crypticorn/hive/client/models/evaluation_response.py +85 -0
  78. crypticorn-2.0.0/crypticorn/hive/client/models/feature_size.py +36 -0
  79. crypticorn-2.0.0/crypticorn/hive/client/models/http_validation_error.py +99 -0
  80. crypticorn-2.0.0/crypticorn/hive/client/models/model.py +133 -0
  81. crypticorn-2.0.0/crypticorn/hive/client/models/model_create.py +93 -0
  82. crypticorn-2.0.0/crypticorn/hive/client/models/model_status.py +35 -0
  83. crypticorn-2.0.0/crypticorn/hive/client/models/model_update.py +83 -0
  84. crypticorn-2.0.0/crypticorn/hive/client/models/target.py +36 -0
  85. crypticorn-2.0.0/crypticorn/hive/client/models/target_type.py +35 -0
  86. crypticorn-2.0.0/crypticorn/hive/client/models/validation_error.py +105 -0
  87. crypticorn-2.0.0/crypticorn/hive/client/models/validation_error_loc_inner.py +159 -0
  88. crypticorn-2.0.0/crypticorn/hive/client/rest.py +195 -0
  89. crypticorn-2.0.0/crypticorn/hive/main.py +34 -0
  90. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/__init__.py +21 -7
  91. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/api/__init__.py +0 -1
  92. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/api/funding_rates_api.py +90 -79
  93. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/api/health_check_api.py +29 -45
  94. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/api/ohlcv_data_api.py +104 -87
  95. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/api/symbols_api.py +36 -54
  96. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/api/udf_api.py +228 -352
  97. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/api_client.py +106 -148
  98. crypticorn-2.0.0/crypticorn/klines/client/api_response.py +20 -0
  99. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/configuration.py +64 -50
  100. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/exceptions.py +20 -16
  101. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/__init__.py +21 -7
  102. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/base_response_health_check_response.py +21 -15
  103. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/base_response_list_funding_rate_response.py +21 -15
  104. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/base_response_list_str.py +16 -14
  105. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/base_response_ohlcv_response.py +21 -15
  106. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/error_response.py +23 -15
  107. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/exchange.py +11 -11
  108. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/funding_rate_response.py +11 -11
  109. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/health_check_response.py +14 -12
  110. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/history_error_response.py +11 -11
  111. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/history_no_data_response.py +16 -16
  112. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/history_success_response.py +16 -16
  113. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/http_validation_error.py +14 -10
  114. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/market.py +2 -4
  115. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/ohlcv_response.py +22 -15
  116. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/resolution.py +5 -7
  117. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/response_get_history_udf_history_get.py +71 -22
  118. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/search_symbol_response.py +22 -15
  119. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/sort_direction.py +2 -4
  120. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/symbol_group_response.py +5 -9
  121. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/symbol_info_response.py +40 -24
  122. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/symbol_type.py +5 -10
  123. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/timeframe.py +5 -7
  124. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/udf_config_response.py +60 -21
  125. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/validation_error.py +19 -13
  126. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/models/validation_error_loc_inner.py +32 -11
  127. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/client/rest.py +30 -41
  128. crypticorn-2.0.0/crypticorn/klines/main.py +79 -0
  129. crypticorn-2.0.0/crypticorn/pay/__init__.py +2 -0
  130. crypticorn-2.0.0/crypticorn/pay/client/__init__.py +52 -0
  131. crypticorn-2.0.0/crypticorn/pay/client/api/__init__.py +7 -0
  132. crypticorn-2.0.0/crypticorn/pay/client/api/now_payments_api.py +813 -0
  133. crypticorn-2.0.0/crypticorn/pay/client/api/payments_api.py +799 -0
  134. crypticorn-2.0.0/crypticorn/pay/client/api/products_api.py +891 -0
  135. crypticorn-2.0.0/crypticorn/pay/client/api/status_api.py +260 -0
  136. crypticorn-2.0.0/crypticorn/pay/client/api_client.py +758 -0
  137. crypticorn-2.0.0/crypticorn/pay/client/api_response.py +20 -0
  138. crypticorn-2.0.0/crypticorn/pay/client/configuration.py +612 -0
  139. {crypticorn-1.0.2rc3/crypticorn/trade → crypticorn-2.0.0/crypticorn/pay}/client/exceptions.py +21 -17
  140. crypticorn-2.0.0/crypticorn/pay/client/models/__init__.py +32 -0
  141. crypticorn-2.0.0/crypticorn/pay/client/models/api_status_res.py +83 -0
  142. crypticorn-2.0.0/crypticorn/pay/client/models/combined_payment_history.py +101 -0
  143. crypticorn-2.0.0/crypticorn/pay/client/models/create_invoice_req.py +188 -0
  144. crypticorn-2.0.0/crypticorn/pay/client/models/create_invoice_res.py +188 -0
  145. crypticorn-2.0.0/crypticorn/pay/client/models/currency.py +165 -0
  146. crypticorn-2.0.0/crypticorn/pay/client/models/estimate_price_req.py +91 -0
  147. crypticorn-2.0.0/crypticorn/pay/client/models/estimate_price_res.py +102 -0
  148. crypticorn-2.0.0/crypticorn/pay/client/models/get_currencies_res.py +99 -0
  149. crypticorn-2.0.0/crypticorn/pay/client/models/get_payment_status_res.py +222 -0
  150. crypticorn-2.0.0/crypticorn/pay/client/models/get_payments_list_res.py +109 -0
  151. crypticorn-2.0.0/crypticorn/pay/client/models/http_validation_error.py +99 -0
  152. crypticorn-2.0.0/crypticorn/pay/client/models/min_amount_req.py +124 -0
  153. crypticorn-2.0.0/crypticorn/pay/client/models/min_amount_res.py +105 -0
  154. crypticorn-2.0.0/crypticorn/pay/client/models/now_api_status_res.py +83 -0
  155. crypticorn-2.0.0/crypticorn/pay/client/models/now_create_invoice_req.py +188 -0
  156. crypticorn-2.0.0/crypticorn/pay/client/models/now_create_invoice_res.py +188 -0
  157. crypticorn-2.0.0/crypticorn/pay/client/models/now_fee_structure.py +104 -0
  158. crypticorn-2.0.0/crypticorn/pay/client/models/now_payment_model.py +124 -0
  159. crypticorn-2.0.0/crypticorn/pay/client/models/now_payment_status.py +42 -0
  160. crypticorn-2.0.0/crypticorn/pay/client/models/now_webhook_payload.py +181 -0
  161. crypticorn-2.0.0/crypticorn/pay/client/models/payment.py +231 -0
  162. crypticorn-2.0.0/crypticorn/pay/client/models/payment_status.py +40 -0
  163. crypticorn-2.0.0/crypticorn/pay/client/models/product.py +87 -0
  164. crypticorn-2.0.0/crypticorn/pay/client/models/product_model.py +119 -0
  165. crypticorn-2.0.0/crypticorn/pay/client/models/product_subs_model.py +108 -0
  166. crypticorn-2.0.0/crypticorn/pay/client/models/services.py +34 -0
  167. crypticorn-2.0.0/crypticorn/pay/client/models/unified_payment_model.py +112 -0
  168. crypticorn-2.0.0/crypticorn/pay/client/models/validation_error.py +105 -0
  169. {crypticorn-1.0.2rc3/crypticorn/trade → crypticorn-2.0.0/crypticorn/pay}/client/models/validation_error_loc_inner.py +33 -12
  170. crypticorn-2.0.0/crypticorn/pay/client/py.typed +0 -0
  171. crypticorn-2.0.0/crypticorn/pay/client/rest.py +195 -0
  172. crypticorn-2.0.0/crypticorn/pay/main.py +35 -0
  173. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/__init__.py +9 -4
  174. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/__init__.py +0 -1
  175. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/api_keys_api.py +203 -304
  176. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/bots_api.py +177 -250
  177. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/exchanges_api.py +38 -57
  178. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/futures_trading_panel_api.py +223 -321
  179. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/notifications_api.py +247 -364
  180. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/orders_api.py +44 -63
  181. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/status_api.py +35 -53
  182. crypticorn-2.0.0/crypticorn/trade/client/api/strategies_api.py +1119 -0
  183. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api/trading_actions_api.py +126 -203
  184. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/api_client.py +115 -154
  185. crypticorn-2.0.0/crypticorn/trade/client/api_response.py +20 -0
  186. crypticorn-2.0.0/crypticorn/trade/client/configuration.py +612 -0
  187. crypticorn-2.0.0/crypticorn/trade/client/exceptions.py +220 -0
  188. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/__init__.py +9 -4
  189. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/action_model.py +114 -50
  190. crypticorn-2.0.0/crypticorn/trade/client/models/api_error_identifier.py +92 -0
  191. crypticorn-2.0.0/crypticorn/trade/client/models/api_error_level.py +37 -0
  192. crypticorn-2.0.0/crypticorn/trade/client/models/api_error_type.py +37 -0
  193. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/api_key_model.py +49 -28
  194. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/bot_model.py +76 -31
  195. crypticorn-2.0.0/crypticorn/trade/client/models/bot_status.py +37 -0
  196. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/exchange.py +3 -5
  197. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/execution_ids.py +14 -14
  198. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/futures_balance.py +39 -23
  199. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/futures_trading_action.py +98 -46
  200. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/http_validation_error.py +15 -11
  201. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/margin_mode.py +3 -5
  202. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/market_type.py +3 -5
  203. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/notification_model.py +60 -27
  204. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/notification_type.py +4 -6
  205. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/order_model.py +125 -65
  206. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/order_status.py +6 -8
  207. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/post_futures_action.py +16 -12
  208. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/strategy_exchange_info.py +11 -12
  209. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/strategy_model.py +66 -27
  210. crypticorn-2.0.0/crypticorn/trade/client/models/strategy_model_input.py +160 -0
  211. crypticorn-2.0.0/crypticorn/trade/client/models/strategy_model_output.py +160 -0
  212. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/tpsl.py +35 -21
  213. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/trading_action_type.py +5 -7
  214. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/update_notification.py +17 -13
  215. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/client/models/validation_error.py +20 -14
  216. crypticorn-2.0.0/crypticorn/trade/client/models/validation_error_loc_inner.py +159 -0
  217. crypticorn-2.0.0/crypticorn/trade/client/py.typed +0 -0
  218. crypticorn-2.0.0/crypticorn/trade/client/rest.py +195 -0
  219. crypticorn-2.0.0/crypticorn/trade/main.py +46 -0
  220. crypticorn-2.0.0/crypticorn.egg-info/PKG-INFO +74 -0
  221. crypticorn-2.0.0/crypticorn.egg-info/SOURCES.txt +232 -0
  222. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn.egg-info/requires.txt +10 -18
  223. crypticorn-2.0.0/pyproject.toml +48 -0
  224. crypticorn-2.0.0/requirements/main.txt +24 -0
  225. crypticorn-1.0.2rc3/LICENSE.md +0 -19
  226. crypticorn-1.0.2rc3/PKG-INFO +0 -47
  227. crypticorn-1.0.2rc3/crypticorn/__init__.py +0 -8
  228. crypticorn-1.0.2rc3/crypticorn/client.py +0 -16
  229. crypticorn-1.0.2rc3/crypticorn/hive/__init__.py +0 -1
  230. crypticorn-1.0.2rc3/crypticorn/hive/main.py +0 -107
  231. crypticorn-1.0.2rc3/crypticorn/hive/requirements.txt +0 -4
  232. crypticorn-1.0.2rc3/crypticorn/hive/utils.py +0 -109
  233. crypticorn-1.0.2rc3/crypticorn/klines/main.py +0 -42
  234. crypticorn-1.0.2rc3/crypticorn/klines/requirements.txt +0 -4
  235. crypticorn-1.0.2rc3/crypticorn/klines/test/test_base_response_health_check_response.py +0 -56
  236. crypticorn-1.0.2rc3/crypticorn/klines/test/test_base_response_list_funding_rate_response.py +0 -59
  237. crypticorn-1.0.2rc3/crypticorn/klines/test/test_base_response_list_str.py +0 -56
  238. crypticorn-1.0.2rc3/crypticorn/klines/test/test_base_response_ohlcv_response.py +0 -72
  239. crypticorn-1.0.2rc3/crypticorn/klines/test/test_error_response.py +0 -57
  240. crypticorn-1.0.2rc3/crypticorn/klines/test/test_exchange.py +0 -56
  241. crypticorn-1.0.2rc3/crypticorn/klines/test/test_funding_rate_response.py +0 -56
  242. crypticorn-1.0.2rc3/crypticorn/klines/test/test_funding_rates_api.py +0 -38
  243. crypticorn-1.0.2rc3/crypticorn/klines/test/test_health_check_api.py +0 -38
  244. crypticorn-1.0.2rc3/crypticorn/klines/test/test_health_check_response.py +0 -52
  245. crypticorn-1.0.2rc3/crypticorn/klines/test/test_history_error_response.py +0 -53
  246. crypticorn-1.0.2rc3/crypticorn/klines/test/test_history_no_data_response.py +0 -69
  247. crypticorn-1.0.2rc3/crypticorn/klines/test/test_history_success_response.py +0 -87
  248. crypticorn-1.0.2rc3/crypticorn/klines/test/test_http_validation_error.py +0 -58
  249. crypticorn-1.0.2rc3/crypticorn/klines/test/test_market.py +0 -33
  250. crypticorn-1.0.2rc3/crypticorn/klines/test/test_ohlcv_data_api.py +0 -38
  251. crypticorn-1.0.2rc3/crypticorn/klines/test/test_ohlcv_response.py +0 -86
  252. crypticorn-1.0.2rc3/crypticorn/klines/test/test_resolution.py +0 -33
  253. crypticorn-1.0.2rc3/crypticorn/klines/test/test_response_get_history_udf_history_get.py +0 -89
  254. crypticorn-1.0.2rc3/crypticorn/klines/test/test_search_symbol_response.py +0 -62
  255. crypticorn-1.0.2rc3/crypticorn/klines/test/test_sort_direction.py +0 -33
  256. crypticorn-1.0.2rc3/crypticorn/klines/test/test_symbol_group_response.py +0 -53
  257. crypticorn-1.0.2rc3/crypticorn/klines/test/test_symbol_info_response.py +0 -84
  258. crypticorn-1.0.2rc3/crypticorn/klines/test/test_symbol_type.py +0 -54
  259. crypticorn-1.0.2rc3/crypticorn/klines/test/test_symbols_api.py +0 -38
  260. crypticorn-1.0.2rc3/crypticorn/klines/test/test_timeframe.py +0 -33
  261. crypticorn-1.0.2rc3/crypticorn/klines/test/test_udf_api.py +0 -80
  262. crypticorn-1.0.2rc3/crypticorn/klines/test/test_udf_config_response.py +0 -95
  263. crypticorn-1.0.2rc3/crypticorn/klines/test/test_validation_error.py +0 -60
  264. crypticorn-1.0.2rc3/crypticorn/klines/test/test_validation_error_loc_inner.py +0 -50
  265. crypticorn-1.0.2rc3/crypticorn/trade/client/api/strategies_api.py +0 -331
  266. crypticorn-1.0.2rc3/crypticorn/trade/client/models/api_error_identifier.py +0 -83
  267. crypticorn-1.0.2rc3/crypticorn/trade/client/rest.py +0 -257
  268. crypticorn-1.0.2rc3/crypticorn/trade/main.py +0 -39
  269. crypticorn-1.0.2rc3/crypticorn/trade/requirements.txt +0 -4
  270. crypticorn-1.0.2rc3/crypticorn.egg-info/PKG-INFO +0 -47
  271. crypticorn-1.0.2rc3/crypticorn.egg-info/SOURCES.txt +0 -132
  272. crypticorn-1.0.2rc3/pyproject.toml +0 -35
  273. {crypticorn-1.0.2rc3/crypticorn/klines → crypticorn-2.0.0/crypticorn/auth}/client/py.typed +0 -0
  274. {crypticorn-1.0.2rc3/crypticorn/trade → crypticorn-2.0.0/crypticorn/hive}/client/py.typed +0 -0
  275. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/klines/__init__.py +0 -0
  276. /crypticorn-1.0.2rc3/crypticorn/klines/test/__init__.py → /crypticorn-2.0.0/crypticorn/klines/client/py.typed +0 -0
  277. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn/trade/__init__.py +0 -0
  278. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn.egg-info/dependency_links.txt +0 -0
  279. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/crypticorn.egg-info/top_level.txt +0 -0
  280. /crypticorn-1.0.2rc3/requirements-dev.txt → /crypticorn-2.0.0/requirements/dev.txt +0 -0
  281. /crypticorn-1.0.2rc3/requirements-test.txt → /crypticorn-2.0.0/requirements/test.txt +0 -0
  282. {crypticorn-1.0.2rc3 → crypticorn-2.0.0}/setup.cfg +0 -0
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.4
2
+ Name: crypticorn
3
+ Version: 2.0.0
4
+ Summary: Maximise Your Crypto Trading Profits with AI Predictions
5
+ Author-email: Crypticorn <timon@crypticorn.com>
6
+ Project-URL: Homepage, https://crypticorn.com
7
+ Keywords: machine learning,data science,crypto,modelling
8
+ Classifier: Topic :: Scientific/Engineering
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Typing :: Typed
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
17
+ Requires-Dist: python_dateutil>=2.8.2
18
+ Requires-Dist: aiohttp>=3.8.4
19
+ Requires-Dist: aiohttp-retry>=2.8.3
20
+ Requires-Dist: pydantic>=2
21
+ Requires-Dist: typing-extensions>=4.7.1
22
+ Requires-Dist: pandas<3.0.0,>=2.2.0
23
+ Requires-Dist: requests<3.0.0,>=2.32.0
24
+ Requires-Dist: tqdm<5.0.0,>=4.67.0
25
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
26
+ Provides-Extra: dev
27
+ Requires-Dist: streamlit; extra == "dev"
28
+ Requires-Dist: httpx; extra == "dev"
29
+ Requires-Dist: build; extra == "dev"
30
+ Requires-Dist: black; extra == "dev"
31
+ Requires-Dist: twine; extra == "dev"
32
+ Requires-Dist: pyflakes; extra == "dev"
33
+ Provides-Extra: test
34
+ Requires-Dist: pytest>=7.2.1; extra == "test"
35
+ Requires-Dist: pytest-cov>=2.8.1; extra == "test"
36
+ Requires-Dist: tox>=3.9.0; extra == "test"
37
+ Requires-Dist: flake8>=4.0.0; extra == "test"
38
+ Requires-Dist: types-python-dateutil>=2.8.19.14; extra == "test"
39
+ Requires-Dist: mypy>=1.5; extra == "test"
40
+
41
+ # What is Crypticorn?
42
+
43
+ Crypticorn is at the forefront of cutting-edge artificial intelligence cryptocurrency trading.
44
+ Crypticorn offers AI-based solutions for both active and passive investors, including:
45
+ - Prediction Dashboard with trading terminal,
46
+ - AI Agents with different strategies,
47
+ - DEX AI Signals for newly launched tokens,
48
+ - DEX AI Bots
49
+
50
+ Use this API Client to contribute to the so-called Hive AI, a community driven AI Meta Model for predicting the
51
+ cryptocurrency market.
52
+
53
+ ## Usage
54
+
55
+ Within an asynchronous context the session is closed automatically.
56
+ ```python
57
+ async with ApiClient(base_url="http://localhost", jwt=jwt) as client:
58
+ # json response
59
+ response = await client.pay.products.get_products_without_preload_content()
60
+ print(await response.json())
61
+ # serialized response with pydantic models
62
+ response = await client.pay.products.get_products()
63
+ print(response)
64
+ # json response with http info
65
+ response = await client.pay.products.get_products_with_http_info()
66
+ print(response)
67
+ ```
68
+
69
+ Without the context you need to close the session manually.
70
+ ```python
71
+ client = ApiClient(base_url="http://localhost", jwt=jwt)
72
+ response = asyncio.run(client.hive.models.get_all_models())
73
+ asyncio.run(client.close())
74
+ ```
@@ -0,0 +1,34 @@
1
+ # What is Crypticorn?
2
+
3
+ Crypticorn is at the forefront of cutting-edge artificial intelligence cryptocurrency trading.
4
+ Crypticorn offers AI-based solutions for both active and passive investors, including:
5
+ - Prediction Dashboard with trading terminal,
6
+ - AI Agents with different strategies,
7
+ - DEX AI Signals for newly launched tokens,
8
+ - DEX AI Bots
9
+
10
+ Use this API Client to contribute to the so-called Hive AI, a community driven AI Meta Model for predicting the
11
+ cryptocurrency market.
12
+
13
+ ## Usage
14
+
15
+ Within an asynchronous context the session is closed automatically.
16
+ ```python
17
+ async with ApiClient(base_url="http://localhost", jwt=jwt) as client:
18
+ # json response
19
+ response = await client.pay.products.get_products_without_preload_content()
20
+ print(await response.json())
21
+ # serialized response with pydantic models
22
+ response = await client.pay.products.get_products()
23
+ print(response)
24
+ # json response with http info
25
+ response = await client.pay.products.get_products_with_http_info()
26
+ print(response)
27
+ ```
28
+
29
+ Without the context you need to close the session manually.
30
+ ```python
31
+ client = ApiClient(base_url="http://localhost", jwt=jwt)
32
+ response = asyncio.run(client.hive.models.get_all_models())
33
+ asyncio.run(client.close())
34
+ ```
@@ -0,0 +1,8 @@
1
+ """
2
+ .. include:: ../README.md
3
+ .. include:: ../CHANGELOG.md
4
+ """
5
+
6
+ from crypticorn.client import ApiClient
7
+
8
+ __all__ = ["ApiClient"]
@@ -0,0 +1,2 @@
1
+ from crypticorn.auth.client import *
2
+ from crypticorn.auth.main import AuthClient
@@ -0,0 +1,112 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Crypticorn Auth API
7
+
8
+ OpenAPI compliant REST API built using tRPC with Express
9
+
10
+ The version of the OpenAPI document: 1.0.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "1.0.0"
18
+
19
+ # import apis into sdk package
20
+ from crypticorn.auth.client.api.admin_api import AdminApi
21
+ from crypticorn.auth.client.api.auth_api import AuthApi
22
+ from crypticorn.auth.client.api.service_api import ServiceApi
23
+ from crypticorn.auth.client.api.user_api import UserApi
24
+ from crypticorn.auth.client.api.wallet_api import WalletApi
25
+
26
+ # import ApiClient
27
+ from crypticorn.auth.client.api_response import ApiResponse
28
+ from crypticorn.auth.client.api_client import ApiClient
29
+ from crypticorn.auth.client.configuration import Configuration
30
+ from crypticorn.auth.client.exceptions import OpenApiException
31
+ from crypticorn.auth.client.exceptions import ApiTypeError
32
+ from crypticorn.auth.client.exceptions import ApiValueError
33
+ from crypticorn.auth.client.exceptions import ApiKeyError
34
+ from crypticorn.auth.client.exceptions import ApiAttributeError
35
+ from crypticorn.auth.client.exceptions import ApiException
36
+
37
+ # import models into sdk package
38
+ from crypticorn.auth.client.models.add_wallet200_response import AddWallet200Response
39
+ from crypticorn.auth.client.models.add_wallet_request import AddWalletRequest
40
+ from crypticorn.auth.client.models.authorize_user200_response import (
41
+ AuthorizeUser200Response,
42
+ )
43
+ from crypticorn.auth.client.models.authorize_user200_response_auth import (
44
+ AuthorizeUser200ResponseAuth,
45
+ )
46
+ from crypticorn.auth.client.models.authorize_user_request import AuthorizeUserRequest
47
+ from crypticorn.auth.client.models.create_user_request import CreateUserRequest
48
+ from crypticorn.auth.client.models.list_wallets200_response import (
49
+ ListWallets200Response,
50
+ )
51
+ from crypticorn.auth.client.models.list_wallets200_response_balances_inner import (
52
+ ListWallets200ResponseBalancesInner,
53
+ )
54
+ from crypticorn.auth.client.models.list_wallets200_response_balances_inner_sale_round import (
55
+ ListWallets200ResponseBalancesInnerSaleRound,
56
+ )
57
+ from crypticorn.auth.client.models.list_wallets200_response_balances_inner_wallet import (
58
+ ListWallets200ResponseBalancesInnerWallet,
59
+ )
60
+ from crypticorn.auth.client.models.list_wallets200_response_balances_inner_wallet_vesting_wallets_inner import (
61
+ ListWallets200ResponseBalancesInnerWalletVestingWalletsInner,
62
+ )
63
+ from crypticorn.auth.client.models.list_wallets200_response_data_inner import (
64
+ ListWallets200ResponseDataInner,
65
+ )
66
+ from crypticorn.auth.client.models.list_wallets200_response_user_value import (
67
+ ListWallets200ResponseUserValue,
68
+ )
69
+ from crypticorn.auth.client.models.logout_default_response import LogoutDefaultResponse
70
+ from crypticorn.auth.client.models.logout_default_response_issues_inner import (
71
+ LogoutDefaultResponseIssuesInner,
72
+ )
73
+ from crypticorn.auth.client.models.refresh_token_info200_response import (
74
+ RefreshTokenInfo200Response,
75
+ )
76
+ from crypticorn.auth.client.models.refresh_token_info200_response_user_session import (
77
+ RefreshTokenInfo200ResponseUserSession,
78
+ )
79
+ from crypticorn.auth.client.models.resend_verification_email_request import (
80
+ ResendVerificationEmailRequest,
81
+ )
82
+ from crypticorn.auth.client.models.revoke_user_tokens_request import (
83
+ RevokeUserTokensRequest,
84
+ )
85
+ from crypticorn.auth.client.models.rotate_tokens200_response import (
86
+ RotateTokens200Response,
87
+ )
88
+ from crypticorn.auth.client.models.token_info200_response import TokenInfo200Response
89
+ from crypticorn.auth.client.models.unlink_wallet_request import UnlinkWalletRequest
90
+ from crypticorn.auth.client.models.update_user_request import UpdateUserRequest
91
+ from crypticorn.auth.client.models.user_reset_password_request import (
92
+ UserResetPasswordRequest,
93
+ )
94
+ from crypticorn.auth.client.models.user_set_password_request import (
95
+ UserSetPasswordRequest,
96
+ )
97
+ from crypticorn.auth.client.models.verify200_response import Verify200Response
98
+ from crypticorn.auth.client.models.verify_email200_response import (
99
+ VerifyEmail200Response,
100
+ )
101
+ from crypticorn.auth.client.models.verify_email200_response_auth import (
102
+ VerifyEmail200ResponseAuth,
103
+ )
104
+ from crypticorn.auth.client.models.verify_email200_response_auth_auth import (
105
+ VerifyEmail200ResponseAuthAuth,
106
+ )
107
+ from crypticorn.auth.client.models.verify_email_request import VerifyEmailRequest
108
+ from crypticorn.auth.client.models.verify_wallet_request import VerifyWalletRequest
109
+ from crypticorn.auth.client.models.wallet_verified200_response import (
110
+ WalletVerified200Response,
111
+ )
112
+ from crypticorn.auth.client.models.whoami200_response import Whoami200Response
@@ -0,0 +1,8 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from crypticorn.auth.client.api.admin_api import AdminApi
5
+ from crypticorn.auth.client.api.auth_api import AuthApi
6
+ from crypticorn.auth.client.api.service_api import ServiceApi
7
+ from crypticorn.auth.client.api.user_api import UserApi
8
+ from crypticorn.auth.client.api.wallet_api import WalletApi