crypticorn 2.7.3__tar.gz → 2.7.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (247) hide show
  1. crypticorn-2.7.5/CHANGELOG.md +459 -0
  2. crypticorn-2.7.5/MANIFEST.in +2 -0
  3. {crypticorn-2.7.3 → crypticorn-2.7.5}/PKG-INFO +22 -17
  4. {crypticorn-2.7.3 → crypticorn-2.7.5}/README.md +18 -16
  5. crypticorn-2.7.5/crypticorn/cli/templates/Dockerfile +33 -0
  6. crypticorn-2.7.5/crypticorn/cli/templates/dependabot.yml +26 -0
  7. crypticorn-2.7.5/crypticorn/cli/templates/ruff.yml +12 -0
  8. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/exceptions.py +13 -7
  9. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn.egg-info/PKG-INFO +22 -17
  10. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn.egg-info/SOURCES.txt +5 -0
  11. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn.egg-info/requires.txt +2 -0
  12. {crypticorn-2.7.3 → crypticorn-2.7.5}/pyproject.toml +2 -1
  13. {crypticorn-2.7.3 → crypticorn-2.7.5}/requirements/dev.txt +2 -0
  14. {crypticorn-2.7.3 → crypticorn-2.7.5}/tests/test_config.py +1 -1
  15. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/__init__.py +0 -0
  16. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/__init__.py +0 -0
  17. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/__init__.py +0 -0
  18. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api/__init__.py +0 -0
  19. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api/admin_api.py +0 -0
  20. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api/auth_api.py +0 -0
  21. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api/service_api.py +0 -0
  22. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api/user_api.py +0 -0
  23. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api/wallet_api.py +0 -0
  24. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api_client.py +0 -0
  25. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/api_response.py +0 -0
  26. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/configuration.py +0 -0
  27. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/exceptions.py +0 -0
  28. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/__init__.py +0 -0
  29. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/add_wallet200_response.py +0 -0
  30. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/add_wallet_request.py +0 -0
  31. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/authorize_user200_response.py +0 -0
  32. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/authorize_user200_response_auth.py +0 -0
  33. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/authorize_user_request.py +0 -0
  34. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/create_api_key200_response.py +0 -0
  35. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/create_api_key_request.py +0 -0
  36. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/create_user_request.py +0 -0
  37. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/get_api_keys200_response_inner.py +0 -0
  38. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/list_wallets200_response.py +0 -0
  39. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner.py +0 -0
  40. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +0 -0
  41. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +0 -0
  42. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +0 -0
  43. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/list_wallets200_response_data_inner.py +0 -0
  44. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/list_wallets200_response_user_value.py +0 -0
  45. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/logout_default_response.py +0 -0
  46. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/logout_default_response_issues_inner.py +0 -0
  47. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/oauth_callback200_response.py +0 -0
  48. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/oauth_callback200_response_user.py +0 -0
  49. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/refresh_token_info200_response.py +0 -0
  50. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +0 -0
  51. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/resend_verification_email_request.py +0 -0
  52. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/revoke_user_tokens_request.py +0 -0
  53. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/rotate_tokens200_response.py +0 -0
  54. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/token_info200_response.py +0 -0
  55. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/unlink_wallet_request.py +0 -0
  56. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/update_user_request.py +0 -0
  57. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/user_by_username200_response.py +0 -0
  58. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/user_reset_password_request.py +0 -0
  59. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/user_set_password_request.py +0 -0
  60. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/verify200_response.py +0 -0
  61. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/verify_email200_response.py +0 -0
  62. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/verify_email200_response_auth.py +0 -0
  63. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/verify_email200_response_auth_auth.py +0 -0
  64. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/verify_email_request.py +0 -0
  65. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/verify_wallet_request.py +0 -0
  66. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/wallet_verified200_response.py +0 -0
  67. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/models/whoami200_response.py +0 -0
  68. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/py.typed +0 -0
  69. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/client/rest.py +0 -0
  70. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/auth/main.py +0 -0
  71. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/cli/__init__.py +0 -0
  72. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/cli/__main__.py +0 -0
  73. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/cli/init.py +0 -0
  74. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/cli/templates/__init__.py +0 -0
  75. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/cli/templates/auth.py +0 -0
  76. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/client.py +0 -0
  77. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/__init__.py +0 -0
  78. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/auth.py +0 -0
  79. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/decorators.py +0 -0
  80. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/enums.py +0 -0
  81. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/errors.py +5 -5
  82. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/mixins.py +0 -0
  83. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/pagination.py +0 -0
  84. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/scopes.py +0 -0
  85. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/status_router.py +0 -0
  86. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/urls.py +0 -0
  87. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/common/utils.py +0 -0
  88. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/__init__.py +0 -0
  89. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/__init__.py +0 -0
  90. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/api/__init__.py +0 -0
  91. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/api/data_api.py +0 -0
  92. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/api/models_api.py +0 -0
  93. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/api/status_api.py +0 -0
  94. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/api_client.py +0 -0
  95. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/api_response.py +0 -0
  96. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/configuration.py +0 -0
  97. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/exceptions.py +0 -0
  98. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/__init__.py +0 -0
  99. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/coins.py +0 -0
  100. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/data_download_response.py +0 -0
  101. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/data_info.py +0 -0
  102. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/data_value_value_value_inner.py +0 -0
  103. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/data_version.py +0 -0
  104. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/data_version_info.py +0 -0
  105. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/download_links.py +0 -0
  106. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/evaluation.py +0 -0
  107. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/evaluation_response.py +0 -0
  108. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/exception_detail.py +0 -0
  109. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/feature_size.py +0 -0
  110. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/model.py +0 -0
  111. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/model_create.py +0 -0
  112. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/model_status.py +0 -0
  113. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/model_update.py +0 -0
  114. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/target.py +0 -0
  115. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/target_info.py +0 -0
  116. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/models/target_type.py +0 -0
  117. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/py.typed +0 -0
  118. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/client/rest.py +0 -0
  119. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/main.py +0 -0
  120. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/hive/utils.py +0 -0
  121. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/__init__.py +0 -0
  122. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/__init__.py +0 -0
  123. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api/__init__.py +0 -0
  124. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api/change_in_timeframe_api.py +0 -0
  125. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api/funding_rates_api.py +0 -0
  126. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api/ohlcv_data_api.py +0 -0
  127. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api/status_api.py +0 -0
  128. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api/symbols_api.py +0 -0
  129. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api/udf_api.py +0 -0
  130. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api_client.py +0 -0
  131. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/api_response.py +0 -0
  132. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/configuration.py +0 -0
  133. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/exceptions.py +0 -0
  134. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/__init__.py +0 -0
  135. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/change_in_timeframe.py +0 -0
  136. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/exception_detail.py +0 -0
  137. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/funding_rate.py +0 -0
  138. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/ohlcv_history.py +0 -0
  139. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/resolution.py +0 -0
  140. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/search_symbol.py +0 -0
  141. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/sort_direction.py +0 -0
  142. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/symbol_group.py +0 -0
  143. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/symbol_info.py +0 -0
  144. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/symbol_type.py +0 -0
  145. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/timeframe.py +0 -0
  146. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/models/udf_config.py +0 -0
  147. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/py.typed +0 -0
  148. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/client/rest.py +0 -0
  149. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/klines/main.py +0 -0
  150. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/__init__.py +0 -0
  151. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/__init__.py +0 -0
  152. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/__init__.py +0 -0
  153. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/exchanges_api.py +0 -0
  154. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/indicators_api.py +0 -0
  155. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/logs_api.py +0 -0
  156. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/marketcap_api.py +0 -0
  157. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/markets_api.py +0 -0
  158. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/status_api.py +0 -0
  159. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api/tokens_api.py +0 -0
  160. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api_client.py +0 -0
  161. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/api_response.py +0 -0
  162. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/configuration.py +0 -0
  163. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/exceptions.py +0 -0
  164. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/models/__init__.py +0 -0
  165. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/models/exception_detail.py +0 -0
  166. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/models/severity.py +0 -0
  167. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/models/time_interval.py +0 -0
  168. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/models/trading_status.py +0 -0
  169. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/py.typed +0 -0
  170. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/client/rest.py +0 -0
  171. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/metrics/main.py +0 -0
  172. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/__init__.py +0 -0
  173. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/__init__.py +0 -0
  174. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/api/__init__.py +0 -0
  175. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/api/now_payments_api.py +0 -0
  176. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/api/payments_api.py +0 -0
  177. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/api/products_api.py +0 -0
  178. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/api/status_api.py +0 -0
  179. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/api_client.py +0 -0
  180. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/api_response.py +0 -0
  181. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/configuration.py +0 -0
  182. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/exceptions.py +0 -0
  183. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/__init__.py +0 -0
  184. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/exception_detail.py +0 -0
  185. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/now_create_invoice_req.py +0 -0
  186. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/now_create_invoice_res.py +0 -0
  187. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/payment.py +0 -0
  188. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/payment_status.py +0 -0
  189. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/product_create.py +0 -0
  190. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/product_read.py +0 -0
  191. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/product_sub_read.py +0 -0
  192. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/product_update.py +0 -0
  193. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/provider.py +0 -0
  194. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/models/scope.py +0 -0
  195. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/py.typed +0 -0
  196. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/client/rest.py +0 -0
  197. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/pay/main.py +0 -0
  198. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/__init__.py +0 -0
  199. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/__init__.py +0 -0
  200. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/__init__.py +0 -0
  201. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/api_keys_api.py +0 -0
  202. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/bots_api.py +0 -0
  203. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/exchanges_api.py +0 -0
  204. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/futures_trading_panel_api.py +0 -0
  205. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/notifications_api.py +0 -0
  206. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/orders_api.py +0 -0
  207. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/status_api.py +0 -0
  208. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/strategies_api.py +0 -0
  209. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api/trading_actions_api.py +0 -0
  210. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api_client.py +0 -0
  211. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/api_response.py +0 -0
  212. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/configuration.py +0 -0
  213. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/exceptions.py +0 -0
  214. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/__init__.py +0 -0
  215. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/action_model.py +0 -0
  216. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/bot_model.py +0 -0
  217. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/bot_status.py +0 -0
  218. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/exception_detail.py +0 -0
  219. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/exchange_key_model.py +0 -0
  220. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/execution_ids.py +0 -0
  221. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/futures_balance.py +0 -0
  222. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/futures_trading_action.py +0 -0
  223. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/margin_mode.py +0 -0
  224. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/notification_model.py +0 -0
  225. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/order_model.py +0 -0
  226. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/order_status.py +0 -0
  227. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/post_futures_action.py +0 -0
  228. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/spot_trading_action.py +0 -0
  229. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/strategy_exchange_info.py +0 -0
  230. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/strategy_model_input.py +0 -0
  231. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/strategy_model_output.py +0 -0
  232. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/tpsl.py +0 -0
  233. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/models/trading_action_type.py +0 -0
  234. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/py.typed +0 -0
  235. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/client/rest.py +0 -0
  236. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn/trade/main.py +0 -0
  237. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn.egg-info/dependency_links.txt +0 -0
  238. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn.egg-info/entry_points.txt +0 -0
  239. {crypticorn-2.7.3 → crypticorn-2.7.5}/crypticorn.egg-info/top_level.txt +0 -0
  240. {crypticorn-2.7.3 → crypticorn-2.7.5}/requirements/extra.txt +0 -0
  241. {crypticorn-2.7.3 → crypticorn-2.7.5}/requirements/main.txt +0 -0
  242. {crypticorn-2.7.3 → crypticorn-2.7.5}/requirements/test.txt +0 -0
  243. {crypticorn-2.7.3 → crypticorn-2.7.5}/setup.cfg +0 -0
  244. {crypticorn-2.7.3 → crypticorn-2.7.5}/tests/test_auth_client.py +1 -1
  245. {crypticorn-2.7.3 → crypticorn-2.7.5}/tests/test_enums.py +0 -0
  246. {crypticorn-2.7.3 → crypticorn-2.7.5}/tests/test_errors.py +0 -0
  247. {crypticorn-2.7.3 → crypticorn-2.7.5}/tests/test_pagination.py +0 -0
@@ -0,0 +1,459 @@
1
+ # CHANGELOG
2
+
3
+
4
+ ## v2.7.5 (2025-05-04)
5
+
6
+ ### Bug Fixes
7
+
8
+ - Log errors and exceptions
9
+ ([`578d6d3`](https://github.com/crypticorn-ai/api-client/commit/578d6d3176e07a7d4cb87e79617d67ab2e1d62de))
10
+
11
+ ### Build System
12
+
13
+ - Include changelog in build
14
+ ([`a78acb7`](https://github.com/crypticorn-ai/api-client/commit/a78acb7a18a957cfefa8e64ce593b13ddcd4fae7))
15
+
16
+
17
+ ## v2.7.4 (2025-05-04)
18
+
19
+ ### Bug Fixes
20
+
21
+ - Include cli templates in build
22
+ ([`8d46b4c`](https://github.com/crypticorn-ai/api-client/commit/8d46b4c6bc6bd413a86d1661a4ae9647ed66755c))
23
+
24
+ ### Documentation
25
+
26
+ - Update README and add license
27
+ ([`1876008`](https://github.com/crypticorn-ai/api-client/commit/187600869b9248aef2b66e881711ddfb96a01538))
28
+
29
+
30
+ ## v2.7.3 (2025-05-03)
31
+
32
+ ### Bug Fixes
33
+
34
+ - Fixes attribute bug in http exception handling
35
+ ([`a90b593`](https://github.com/crypticorn-ai/api-client/commit/a90b593bfa3e08a1703a7e2e1fc8a7bb8ac456e3))
36
+
37
+
38
+ ## v2.7.2 (2025-05-03)
39
+
40
+ ### Bug Fixes
41
+
42
+ - Add write:pay:now to default scopes
43
+ ([`8375248`](https://github.com/crypticorn-ai/api-client/commit/83752484e3570a1f39eacda4223100d7f3fbadd0))
44
+
45
+
46
+ ## v2.7.1 (2025-05-02)
47
+
48
+ ### Bug Fixes
49
+
50
+ - Use pydantic instead of json response in api wrappers
51
+ ([`ddd623b`](https://github.com/crypticorn-ai/api-client/commit/ddd623b28cb542ae6dd1bab02044c682cac206af))
52
+
53
+
54
+ ## v2.7.0 (2025-05-01)
55
+
56
+ ### Features
57
+
58
+ - Add download functionality for hive download data endpoint
59
+ ([`ee09d17`](https://github.com/crypticorn-ai/api-client/commit/ee09d177a28f3879e549eb3044c24b5e6197a528))
60
+
61
+
62
+ ## v2.6.0 (2025-04-30)
63
+
64
+ ### Features
65
+
66
+ - Add admin flag on auth verify response and user by username endpoint
67
+ ([`3f27fba`](https://github.com/crypticorn-ai/api-client/commit/3f27fba655e15a42a947ad1c67bcf4319c3daed6))
68
+
69
+ - Add common pagination query parameters
70
+ ([`4157137`](https://github.com/crypticorn-ai/api-client/commit/415713725541bb4a180f11de12fea2c3071c5f55))
71
+
72
+ - Add common webscoket error handling
73
+ ([`334a450`](https://github.com/crypticorn-ai/api-client/commit/334a45054797616fdd8bb917381e189bb64e4678))
74
+
75
+ ### Testing
76
+
77
+ - Add api key generation and remove duplicate tests
78
+ ([`d60a890`](https://github.com/crypticorn-ai/api-client/commit/d60a89071fe7bc25025fbdf2298cb560d9fbdfb8))
79
+
80
+
81
+ ## v2.5.3 (2025-04-29)
82
+
83
+ ### Bug Fixes
84
+
85
+ - Use ExceptionContent in throw utilities
86
+ ([`b38ebf1`](https://github.com/crypticorn-ai/api-client/commit/b38ebf1443d1df126f7e1014b5c25f1e17f56fdc))
87
+
88
+
89
+ ## v2.5.2 (2025-04-29)
90
+
91
+ ### Bug Fixes
92
+
93
+ - Only allow type ApiError in throw utility functions
94
+ ([`7604342`](https://github.com/crypticorn-ai/api-client/commit/7604342baa6dd2bee816ae446dfcc08edb298ddb))
95
+
96
+ ### Build System
97
+
98
+ - Clean generated code before regenerating
99
+ ([`b563024`](https://github.com/crypticorn-ai/api-client/commit/b56302497e79e2a64e7403d15a0f3d3bd3233b63))
100
+
101
+
102
+ ## v2.5.1 (2025-04-27)
103
+
104
+ ### Bug Fixes
105
+
106
+ - Integrate exception handling in auth handler
107
+ ([`b7835ef`](https://github.com/crypticorn-ai/api-client/commit/b7835efef54adbd021ecce27c002c5e5501cb99c))
108
+
109
+ ### Build System
110
+
111
+ - Exclude shared classes and enums from openapi to reduce duplication upon client generation
112
+ ([`1987864`](https://github.com/crypticorn-ai/api-client/commit/1987864392397d7ee74ddb9ecbfb61c6d83134dc))
113
+
114
+ ### Continuous Integration
115
+
116
+ - Run codecov workflow on push and pull request
117
+ ([`cf2bc16`](https://github.com/crypticorn-ai/api-client/commit/cf2bc165d04b855839812ea626a3647b17a91458))
118
+
119
+ ### Refactoring
120
+
121
+ - Improve sub package registration in ApiClient to reduce redundance
122
+ ([`bdea044`](https://github.com/crypticorn-ai/api-client/commit/bdea044a6bc5180daed59b9a504866d2f519ae05))
123
+
124
+ - Integrate custom exception handling in auth handler
125
+ ([`3f997e2`](https://github.com/crypticorn-ai/api-client/commit/3f997e23c1493296deaab23063b709d08702d5af))
126
+
127
+ ### Testing
128
+
129
+ - Add jwt generation function
130
+ ([`c2bc90f`](https://github.com/crypticorn-ai/api-client/commit/c2bc90fb878656642787755330a99c6b9056f14c))
131
+
132
+ - Update exception assertions with latest changes auth handler
133
+ ([`4c220e5`](https://github.com/crypticorn-ai/api-client/commit/4c220e5bd31d1a7fd64d0f302044acfd4d4927e9))
134
+
135
+
136
+ ## v2.5.0 (2025-04-26)
137
+
138
+
139
+ ## v2.5.0-rc.5 (2025-04-26)
140
+
141
+ ### Features
142
+
143
+ - Add details field to `ExceptionContent` to support additional details about the error
144
+ ([`3ae6bc5`](https://github.com/crypticorn-ai/api-client/commit/3ae6bc57ae4e1e8a23c46511cdc5bf9c1eadc40d))
145
+
146
+ ### Refactoring
147
+
148
+ - Rename exception class names
149
+ ([`7f50e11`](https://github.com/crypticorn-ai/api-client/commit/7f50e114ceee596dcf3e25d3decfe78c849ad22e))
150
+
151
+
152
+ ## v2.5.0-rc.4 (2025-04-26)
153
+
154
+ ### Bug Fixes
155
+
156
+ - Remove wrong media type from `exception_response`
157
+ ([`34920f0`](https://github.com/crypticorn-ai/api-client/commit/34920f0a51eded25e64324654d711e8716ee707c))
158
+
159
+
160
+ ## v2.5.0-rc.3 (2025-04-26)
161
+
162
+ ### Bug Fixes
163
+
164
+ - Fixes TypeError bug in deprecated decorator
165
+ ([`4344581`](https://github.com/crypticorn-ai/api-client/commit/4344581f2737377334d2ab0203c8872e0acdfadb))
166
+
167
+ ### Features
168
+
169
+ - Add exception handler and improve custom exception
170
+ ([`64c05ea`](https://github.com/crypticorn-ai/api-client/commit/64c05eafd011556b49786034d58a4de264438bfd))
171
+
172
+
173
+ ## v2.5.0-rc.2 (2025-04-25)
174
+
175
+ ### Bug Fixes
176
+
177
+ - Enforce stricter types on Http Exception and improve descriptions and doc string
178
+ ([`0941780`](https://github.com/crypticorn-ai/api-client/commit/094178099ca1d01d763f41cce6ac898cbc77a9a3))
179
+
180
+
181
+ ## v2.5.0-rc.1 (2025-04-25)
182
+
183
+ ### Build System
184
+
185
+ - Update generation script to catch fallback if local server is not running
186
+ ([`b5e9a16`](https://github.com/crypticorn-ai/api-client/commit/b5e9a16092c836bea38657b7ddab252945696848))
187
+
188
+ ### Chores
189
+
190
+ - Deprecate is_equal function
191
+ ([`b3b3094`](https://github.com/crypticorn-ai/api-client/commit/b3b309428dc078673a5b1718a7075855bce0c098))
192
+
193
+ ### Features
194
+
195
+ - Add custom Http Exception class with shared error codes
196
+ ([`aa0d851`](https://github.com/crypticorn-ai/api-client/commit/aa0d8515936ea65951608a9704f8d840069ac15d))
197
+
198
+
199
+ ## v2.4.7 (2025-04-17)
200
+
201
+ ### Bug Fixes
202
+
203
+ - Raise custom WebsockeError in ws auth dependencies
204
+ ([`94f8b62`](https://github.com/crypticorn-ai/api-client/commit/94f8b62593d3f44785b11812102c3a4ab9195073))
205
+
206
+ ### Performance Improvements
207
+
208
+ - Make pandas an optional dependency to decrease package size
209
+ ([`cb942c7`](https://github.com/crypticorn-ai/api-client/commit/cb942c74d5d7836f9cab1beb2b1d5ee6a9be4d4e))
210
+
211
+
212
+ ## v2.4.6 (2025-04-13)
213
+
214
+ ### Bug Fixes
215
+
216
+ - Fixes config override bug
217
+ ([`58c096b`](https://github.com/crypticorn-ai/api-client/commit/58c096b98a738c2c318768bae9f28ddb100fe127))
218
+
219
+ ### Documentation
220
+
221
+ - Extend usage section
222
+ ([`2887872`](https://github.com/crypticorn-ai/api-client/commit/28878720eeb0ad7461165402c5521258c1c7dc0e))
223
+
224
+
225
+ ## v2.4.5 (2025-04-13)
226
+
227
+ ### Bug Fixes
228
+
229
+ - Fixes fallback bug with pydantic
230
+ ([`70d1257`](https://github.com/crypticorn-ai/api-client/commit/70d125723c7e707f765892270e6aa6977b5b25a5))
231
+
232
+
233
+ ## v2.4.4 (2025-04-12)
234
+
235
+ ### Bug Fixes
236
+
237
+ - Auth fixes on auth module
238
+ ([`7c3ed5d`](https://github.com/crypticorn-ai/api-client/commit/7c3ed5d460e464939716361014514baff50d380d))
239
+
240
+ ### Documentation
241
+
242
+ - Update advanced usage section
243
+ ([`1c804bf`](https://github.com/crypticorn-ai/api-client/commit/1c804bf6eddceb19c31a553c1ff98b31fdd8cbc0))
244
+
245
+
246
+ ## v2.4.3 (2025-04-12)
247
+
248
+ ### Bug Fixes
249
+
250
+ - Fix utils import
251
+ ([`29cc346`](https://github.com/crypticorn-ai/api-client/commit/29cc346c2ff835f8732644fbe21aadf62153c1d0))
252
+
253
+
254
+ ## v2.4.2 (2025-04-12)
255
+
256
+ ### Bug Fixes
257
+
258
+ - Add global utils and add http error mapping
259
+ ([`c3ce565`](https://github.com/crypticorn-ai/api-client/commit/c3ce565446535038f196f65b9fdf276a6ce71563))
260
+
261
+
262
+ ## v2.4.1 (2025-04-12)
263
+
264
+ ### Bug Fixes
265
+
266
+ - Add market metrics scopes
267
+ ([`2dc0b4f`](https://github.com/crypticorn-ai/api-client/commit/2dc0b4f1761d5bae07c946448a820d1fc9814288))
268
+
269
+ ### Documentation
270
+
271
+ - Update structure section
272
+ ([`cc77abc`](https://github.com/crypticorn-ai/api-client/commit/cc77abc19b5813e335356f4539654e04b8ba2014))
273
+
274
+
275
+ ## v2.4.0 (2025-04-12)
276
+
277
+ ### Features
278
+
279
+ - Add enum fallbacks, enum validation mixin and enum tests
280
+ ([`63bd61c`](https://github.com/crypticorn-ai/api-client/commit/63bd61cd826f9de1aec40d5f877d82126b59fbf8))
281
+
282
+ - Start cli support for initializing files from templates
283
+ ([`5411d12`](https://github.com/crypticorn-ai/api-client/commit/5411d12704605e6d6af46477ff74e1ac44abd259))
284
+
285
+
286
+ ## v2.3.0 (2025-04-11)
287
+
288
+ ### Features
289
+
290
+ - Add exchange and market enums
291
+ ([`8ad2d7d`](https://github.com/crypticorn-ai/api-client/commit/8ad2d7dc982261f3e710c3e61755ea9613d982c3))
292
+
293
+
294
+ ## v2.2.3 (2025-04-11)
295
+
296
+ ### Bug Fixes
297
+
298
+ - Update error codes
299
+ ([`3121fb0`](https://github.com/crypticorn-ai/api-client/commit/3121fb0bb4d05a6d62083d806fbc636761254448))
300
+
301
+
302
+ ## v2.2.2 (2025-04-09)
303
+
304
+ ### Bug Fixes
305
+
306
+ - Refactor generated model name by partial_model and add to init file
307
+ ([`e663848`](https://github.com/crypticorn-ai/api-client/commit/e6638483bdeb01121749b579268493c7c67227dc))
308
+
309
+
310
+ ## v2.2.1 (2025-04-09)
311
+
312
+ ### Bug Fixes
313
+
314
+ - Add pydantic decorator that makes all fields of a model optional
315
+ ([`1ae4432`](https://github.com/crypticorn-ai/api-client/commit/1ae44325194be3ca86eb72be5d3edc2442dd00cc))
316
+
317
+
318
+ ## v2.2.0 (2025-04-09)
319
+
320
+ ### Bug Fixes
321
+
322
+ - Fix import issues (fixes #22) and add auth module to main client
323
+ ([`7f3f7c2`](https://github.com/crypticorn-ai/api-client/commit/7f3f7c2120af053b916aaa045444331998986f7d))
324
+
325
+ ### Documentation
326
+
327
+ - Update README with configuration and response type sections
328
+ ([`a9fbccf`](https://github.com/crypticorn-ai/api-client/commit/a9fbccfed254573d3e62332901704f39d8a6777f))
329
+
330
+ ### Features
331
+
332
+ - Add module based configuration options for the client
333
+ ([`553400c`](https://github.com/crypticorn-ai/api-client/commit/553400c642d3da4459daa4fa9b56588e9f519581))
334
+
335
+
336
+ ## v2.1.6 (2025-04-08)
337
+
338
+ ### Bug Fixes
339
+
340
+ - Add market metrics module
341
+ ([`2954702`](https://github.com/crypticorn-ai/api-client/commit/29547025a0226bca1b9da9cfff5c89d3ed30f497))
342
+
343
+
344
+ ## v2.1.5 (2025-04-08)
345
+
346
+ ### Bug Fixes
347
+
348
+ - Update auth and trade module
349
+ ([`df936b6`](https://github.com/crypticorn-ai/api-client/commit/df936b6eb76179a3eac6d7997c82ef30e74de860))
350
+
351
+
352
+ ## v2.1.4 (2025-04-08)
353
+
354
+ ### Bug Fixes
355
+
356
+ - Refactor api errors
357
+ ([`885a20e`](https://github.com/crypticorn-ai/api-client/commit/885a20ec839dcf14fb4ec8d946cea76dcb15a65e))
358
+
359
+
360
+ ## v2.1.3 (2025-04-08)
361
+
362
+ ### Bug Fixes
363
+
364
+ - Use SecurityScopes class instead of list[Scope]
365
+ ([`b41c718`](https://github.com/crypticorn-ai/api-client/commit/b41c718acc108e05b307abb399137c2fc30e56fd))
366
+
367
+
368
+ ## v2.1.2 (2025-04-08)
369
+
370
+ ### Bug Fixes
371
+
372
+ - Allow scopes to be set as strings
373
+ ([`600babb`](https://github.com/crypticorn-ai/api-client/commit/600babb87c93aeecdc42aa19ebff1076a76404ea))
374
+
375
+
376
+ ## v2.1.1 (2025-04-08)
377
+
378
+ ### Bug Fixes
379
+
380
+ - Remove three unused scopes
381
+ ([`3167308`](https://github.com/crypticorn-ai/api-client/commit/3167308b3df0c68b8e4c134841b437f40315a8e9))
382
+
383
+
384
+ ## v2.1.0 (2025-04-07)
385
+
386
+ ### Features
387
+
388
+ - Add api key authorization and websocket auth support
389
+ ([`adeb8bd`](https://github.com/crypticorn-ai/api-client/commit/adeb8bdf42ed3da1b63b430f291e920e97d62d14))
390
+
391
+ ### Refactoring
392
+
393
+ - Rename scopes and make requirements more strict
394
+ ([`abf53a6`](https://github.com/crypticorn-ai/api-client/commit/abf53a6de46703a3ac2b0c66c101ec58ae8928f2))
395
+
396
+
397
+ ## v2.0.1 (2025-04-06)
398
+
399
+ ### Bug Fixes
400
+
401
+ - Refactor Scopes and Exception handling in auth client
402
+ ([`8e9a64a`](https://github.com/crypticorn-ai/api-client/commit/8e9a64aa091cc3c840230ad2a7167c98426ae5c9))
403
+
404
+ ### Build System
405
+
406
+ - Fix ci syntax and ssh errors
407
+ ([`9ecfaa4`](https://github.com/crypticorn-ai/api-client/commit/9ecfaa4f09dfa4ae1667f9c1b9307d2623288f5f))
408
+
409
+ - Separate ci and update package config and deps
410
+ ([`5367f2a`](https://github.com/crypticorn-ai/api-client/commit/5367f2a79028ed1f5e2c05ddded91a9ddbd0d9fa))
411
+
412
+ - Update ci
413
+ ([`799fd96`](https://github.com/crypticorn-ai/api-client/commit/799fd962529b0120b290c3f5c253e9050b40a41b))
414
+
415
+ ### Documentation
416
+
417
+ - Update Readme
418
+ ([`39825b1`](https://github.com/crypticorn-ai/api-client/commit/39825b1506c2d5663ae8eecc6f73f8d6bed5692e))
419
+
420
+
421
+ ## v2.0.0 (2025-04-06)
422
+
423
+ ### Build System
424
+
425
+ - Add psr build_command
426
+ ([`b661846`](https://github.com/crypticorn-ai/api-client/commit/b6618464c7d7727d34ab4a448f2e0104fcf4f3cc))
427
+
428
+ - Fix ci-cd
429
+ ([`6edcb36`](https://github.com/crypticorn-ai/api-client/commit/6edcb3611673f191ec482e9d40614c7c2d2b59f3))
430
+
431
+ - Fix signing error in ci
432
+ ([`0dcbf22`](https://github.com/crypticorn-ai/api-client/commit/0dcbf22892dbc17297cf9b91b35d62ec205a76ea))
433
+
434
+ - Fixes pypi packages dir
435
+ ([`a25a458`](https://github.com/crypticorn-ai/api-client/commit/a25a4580c6a656e30d55b52c837480b833cb9aab))
436
+
437
+ - Update ci cd and configure PSR
438
+ ([`e5d6fa5`](https://github.com/crypticorn-ai/api-client/commit/e5d6fa5d2ff4355f59fd4c92e4b9bed77fcae2d8))
439
+
440
+ BREAKING CHANGE: add several more backend api clients and restructure the modules
441
+
442
+
443
+ ## v1.0.0 (2024-11-27)
444
+
445
+ ### Continuous Integration
446
+
447
+ - Trigger workflow on PRs and changes to public folder (close #4)
448
+ ([`08b9317`](https://github.com/crypticorn-ai/api-client/commit/08b931780ac872c6034883cd5ab83d2c7b380414))
449
+
450
+ ### Features
451
+
452
+ - Add get Economics News
453
+ ([`81575b1`](https://github.com/crypticorn-ai/api-client/commit/81575b18a7c925c5dafe18bd9e15807a282134e3))
454
+
455
+ - Add get Economics News
456
+ ([`ccbfb7a`](https://github.com/crypticorn-ai/api-client/commit/ccbfb7a3d857ff5d531ec06f3b9df05b63f8dbf3))
457
+
458
+ - Add get Economics News
459
+ ([`bc6574d`](https://github.com/crypticorn-ai/api-client/commit/bc6574dcadcdc9d05e860fde0aa285a4e7dcba32))
@@ -0,0 +1,2 @@
1
+ graft crypticorn/cli/templates
2
+ include CHANGELOG.md
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crypticorn
3
- Version: 2.7.3
3
+ Version: 2.7.5
4
4
  Summary: Maximise Your Crypto Trading Profits with Machine Learning
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
+ License: MIT
6
7
  Project-URL: Homepage, https://crypticorn.com
7
8
  Keywords: machine learning,data science,crypto,modelling
8
9
  Classifier: Topic :: Scientific/Engineering
@@ -24,6 +25,8 @@ Requires-Dist: typing-extensions<5.0.0,>=4.7.1
24
25
  Requires-Dist: requests<3.0.0,>=2.32.0
25
26
  Requires-Dist: tqdm<5.0.0,>=4.67.0
26
27
  Provides-Extra: dev
28
+ Requires-Dist: build; extra == "dev"
29
+ Requires-Dist: twine; extra == "dev"
27
30
  Requires-Dist: streamlit; extra == "dev"
28
31
  Requires-Dist: httpx; extra == "dev"
29
32
  Requires-Dist: black; extra == "dev"
@@ -40,17 +43,12 @@ Requires-Dist: PyJWT==2.10.0; extra == "test"
40
43
  Provides-Extra: extra
41
44
  Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "extra"
42
45
 
43
- # What is Crypticorn?
46
+ ## What is Crypticorn?
44
47
 
45
- Crypticorn is at the forefront of cutting-edge artificial intelligence cryptocurrency trading.
46
- Crypticorn offers AI-based solutions for both active and passive investors, including:
47
- - Prediction Dashboard with trading terminal,
48
- - AI Agents with different strategies,
49
- - DEX AI Signals for newly launched tokens,
50
- - DEX AI Bots
48
+ Crypticorn is at the forefront of cutting-edge crypto trading with Machine Learning.
51
49
 
52
- Use this API Client to contribute to the so-called Hive AI, a community driven AI Meta Model for predicting the
53
- cryptocurrency market.
50
+ Use this API Client to access valuable data sources, contribute to the Hive AI - a community driven AI Meta Model for predicting the
51
+ crypto market - and programmatically interact with the entire Crypticorn ecosystem.
54
52
 
55
53
  ## Installation
56
54
 
@@ -66,17 +64,19 @@ If you want the latest version, which could be a pre release, run:
66
64
  pip install --pre crypticorn
67
65
  ```
68
66
 
67
+ You can install extra dependencies grouped in the extras `extra` (heavy dependencies that do not come with the default version) `dev` (development) and `test` (testing). The `extra` dependencies include heavy libraries like `pandas`, which is only used in a few custom API operations (suffixed with `_fmt`), which preprocess the response data as a pandas Dataframe for convenience.
68
+
69
69
  ## Structure
70
70
 
71
71
  Our API is available as an asynchronous Python SDK. The main entry point you need is the `ApiClient` class, which you would import like this:
72
72
  ```python
73
73
  from crypticorn import ApiClient
74
74
  ```
75
- The ApiClient serves as the central interface for API operations. It instantiates multiple API wrappers corresponding to our microservices.
75
+ The ApiClient serves as the central interface for API operations. It instantiates multiple API wrappers corresponding to our micro services.
76
76
 
77
- Specific imports, such as request models, should be accessed through the appropriate submodules.
77
+ Request and response models for API operations should be accessed through the appropriate sub package.
78
78
 
79
- Note: All symbols are re-exported at the first submodule layer for convenience.
79
+ Note: All symbols are re-exported at the sub package level for convenience.
80
80
 
81
81
  ```python
82
82
  from crypticorn.trade import BotStatus
@@ -87,6 +87,10 @@ The `common` submodule contains shared classes not bound to a specific API.
87
87
  from crypticorn.common import Scope, Exchange
88
88
  ```
89
89
 
90
+ ## Authentication
91
+
92
+ To get started, [create an API key in your dashboard](https://app.crypticorn.com/account/developer). Then instantiate the `ApiClient` class with your copied key.
93
+
90
94
  ## Basic Usage
91
95
 
92
96
  ### With Async Context Protocol
@@ -131,16 +135,16 @@ print(res)
131
135
  ```
132
136
  The output would look like this:
133
137
  ```python
134
- status_code=200 headers={'Date': 'Wed, 09 Apr 2025 19:15:19 GMT', 'Content-Type': 'application/json', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Alt-Svc': 'h3=":443"; ma=86400', 'Server': 'cloudflare', 'Cf-Cache-Status': 'DYNAMIC', 'Content-Encoding': 'gzip', 'CF-RAY': '92dc551a687bbe5e-ZRH'} data=[ProductModel(id='67e8146e7bae32f3838fe36a', name='Awesome Product', price=5.0, scopes=None, duration=30, description='You need to buy this', is_active=True)] raw_data=b'[{"id":"67e8146e7bae32f3838fe36a","name":"Awesome Product","price":5.0,"duration":30,"description":"You need to buy this","is_active":true}]'
138
+ status_code=200 headers={'Date': 'Wed, 09 Apr 2025 19:15:19 GMT', 'Content-Type': 'application/json'} data=[ProductModel(id='67e8146e7bae32f3838fe36a', name='Awesome Product', price=5.0, scopes=None, duration=30, description='You need to buy this', is_active=True)] raw_data=b'[{"id":"67e8146e7bae32f3838fe36a","name":"Awesome Product","price":5.0,"duration":30,"description":"You need to buy this","is_active":true}]'
135
139
  ```
136
- You can then access the data of the response (as serialized output) with:
140
+ You can then access the data of the response (as serialized output (1) or as JSON string in bytes (2)) with:
137
141
  ```python
138
142
  print(res.data)
143
+ print(res.raw_data)
139
144
  ```
140
145
  On top of that you get some information about the request:
141
146
  ```python
142
147
  print(res.status_code)
143
- print(res.raw_data)
144
148
  print(res.headers)
145
149
  ```
146
150
 
@@ -163,6 +167,7 @@ This might be of use if you are testing a specific API locally.
163
167
  To override e.g. the host for the Hive client to connect to http://localhost:8000 instead of the default proxy, you would do:
164
168
  ```python
165
169
  from crypticorn.hive import Configuration as Hiveconfig
170
+ from crypticorn.common import Service
166
171
  async with ApiClient(base_url=BaseUrl.DEV) as client:
167
- client.configure(config=HiveConfig(host="http://localhost:8000"), client=client.hive)
172
+ client.configure(config=HiveConfig(host="http://localhost:8000"), client=Service.HIVE)
168
173
  ```
@@ -1,14 +1,9 @@
1
- # What is Crypticorn?
1
+ ## What is Crypticorn?
2
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
3
+ Crypticorn is at the forefront of cutting-edge crypto trading with Machine Learning.
9
4
 
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.
5
+ Use this API Client to access valuable data sources, contribute to the Hive AI - a community driven AI Meta Model for predicting the
6
+ crypto market - and programmatically interact with the entire Crypticorn ecosystem.
12
7
 
13
8
  ## Installation
14
9
 
@@ -24,17 +19,19 @@ If you want the latest version, which could be a pre release, run:
24
19
  pip install --pre crypticorn
25
20
  ```
26
21
 
22
+ You can install extra dependencies grouped in the extras `extra` (heavy dependencies that do not come with the default version) `dev` (development) and `test` (testing). The `extra` dependencies include heavy libraries like `pandas`, which is only used in a few custom API operations (suffixed with `_fmt`), which preprocess the response data as a pandas Dataframe for convenience.
23
+
27
24
  ## Structure
28
25
 
29
26
  Our API is available as an asynchronous Python SDK. The main entry point you need is the `ApiClient` class, which you would import like this:
30
27
  ```python
31
28
  from crypticorn import ApiClient
32
29
  ```
33
- The ApiClient serves as the central interface for API operations. It instantiates multiple API wrappers corresponding to our microservices.
30
+ The ApiClient serves as the central interface for API operations. It instantiates multiple API wrappers corresponding to our micro services.
34
31
 
35
- Specific imports, such as request models, should be accessed through the appropriate submodules.
32
+ Request and response models for API operations should be accessed through the appropriate sub package.
36
33
 
37
- Note: All symbols are re-exported at the first submodule layer for convenience.
34
+ Note: All symbols are re-exported at the sub package level for convenience.
38
35
 
39
36
  ```python
40
37
  from crypticorn.trade import BotStatus
@@ -45,6 +42,10 @@ The `common` submodule contains shared classes not bound to a specific API.
45
42
  from crypticorn.common import Scope, Exchange
46
43
  ```
47
44
 
45
+ ## Authentication
46
+
47
+ To get started, [create an API key in your dashboard](https://app.crypticorn.com/account/developer). Then instantiate the `ApiClient` class with your copied key.
48
+
48
49
  ## Basic Usage
49
50
 
50
51
  ### With Async Context Protocol
@@ -89,16 +90,16 @@ print(res)
89
90
  ```
90
91
  The output would look like this:
91
92
  ```python
92
- status_code=200 headers={'Date': 'Wed, 09 Apr 2025 19:15:19 GMT', 'Content-Type': 'application/json', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Alt-Svc': 'h3=":443"; ma=86400', 'Server': 'cloudflare', 'Cf-Cache-Status': 'DYNAMIC', 'Content-Encoding': 'gzip', 'CF-RAY': '92dc551a687bbe5e-ZRH'} data=[ProductModel(id='67e8146e7bae32f3838fe36a', name='Awesome Product', price=5.0, scopes=None, duration=30, description='You need to buy this', is_active=True)] raw_data=b'[{"id":"67e8146e7bae32f3838fe36a","name":"Awesome Product","price":5.0,"duration":30,"description":"You need to buy this","is_active":true}]'
93
+ status_code=200 headers={'Date': 'Wed, 09 Apr 2025 19:15:19 GMT', 'Content-Type': 'application/json'} data=[ProductModel(id='67e8146e7bae32f3838fe36a', name='Awesome Product', price=5.0, scopes=None, duration=30, description='You need to buy this', is_active=True)] raw_data=b'[{"id":"67e8146e7bae32f3838fe36a","name":"Awesome Product","price":5.0,"duration":30,"description":"You need to buy this","is_active":true}]'
93
94
  ```
94
- You can then access the data of the response (as serialized output) with:
95
+ You can then access the data of the response (as serialized output (1) or as JSON string in bytes (2)) with:
95
96
  ```python
96
97
  print(res.data)
98
+ print(res.raw_data)
97
99
  ```
98
100
  On top of that you get some information about the request:
99
101
  ```python
100
102
  print(res.status_code)
101
- print(res.raw_data)
102
103
  print(res.headers)
103
104
  ```
104
105
 
@@ -121,6 +122,7 @@ This might be of use if you are testing a specific API locally.
121
122
  To override e.g. the host for the Hive client to connect to http://localhost:8000 instead of the default proxy, you would do:
122
123
  ```python
123
124
  from crypticorn.hive import Configuration as Hiveconfig
125
+ from crypticorn.common import Service
124
126
  async with ApiClient(base_url=BaseUrl.DEV) as client:
125
- client.configure(config=HiveConfig(host="http://localhost:8000"), client=client.hive)
127
+ client.configure(config=HiveConfig(host="http://localhost:8000"), client=Service.HIVE)
126
128
  ```
@@ -0,0 +1,33 @@
1
+ FROM python:3.11.5
2
+
3
+ # This line is used to allow the cache to be busted (only busts in CI)
4
+ ARG CACHEBUST=1
5
+ COPY ./requirements.txt /code/requirements.txt
6
+
7
+ WORKDIR /code
8
+ # set API_ENV in .env
9
+ # API_ENV=local
10
+ # add to compose file
11
+ # build:
12
+ # context: .
13
+ # dockerfile: src/api/Dockerfile
14
+ # args:
15
+ # - API_ENV=${API_ENV}
16
+ # environment:
17
+ # - API_ENV=${API_ENV}
18
+ #
19
+ # and to the workflow:
20
+ # env:
21
+ # API_ENV: ${{ github.ref == 'refs/heads/main' && 'prod' || 'dev' }}
22
+ ARG API_ENV
23
+
24
+ RUN pip install --no-cache-dir -r requirements.txt
25
+
26
+ RUN if [ "$API_ENV" != "prod" ]; then \
27
+ pip install --pre crypticorn; \
28
+ fi
29
+
30
+
31
+ COPY ./src /code/src
32
+
33
+ CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "3000"]