crypticorn 1.0.2rc3__py3-none-any.whl → 2.0.0__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.
- crypticorn/__init__.py +3 -3
- crypticorn/auth/__init__.py +2 -0
- crypticorn/auth/client/__init__.py +112 -0
- crypticorn/auth/client/api/__init__.py +8 -0
- crypticorn/auth/client/api/admin_api.py +522 -0
- crypticorn/auth/client/api/auth_api.py +2089 -0
- crypticorn/auth/client/api/service_api.py +309 -0
- crypticorn/auth/client/api/user_api.py +2540 -0
- crypticorn/auth/client/api/wallet_api.py +1698 -0
- crypticorn/auth/client/api_client.py +758 -0
- crypticorn/auth/client/api_response.py +20 -0
- crypticorn/auth/client/configuration.py +584 -0
- crypticorn/auth/client/exceptions.py +220 -0
- crypticorn/auth/client/models/__init__.py +91 -0
- crypticorn/auth/client/models/add_wallet200_response.py +86 -0
- crypticorn/auth/client/models/add_wallet_request.py +107 -0
- crypticorn/auth/client/models/authorize_user200_response.py +107 -0
- crypticorn/auth/client/models/authorize_user200_response_auth.py +101 -0
- crypticorn/auth/client/models/authorize_user_request.py +96 -0
- crypticorn/auth/client/models/create_user_request.py +114 -0
- crypticorn/auth/client/models/list_wallets200_response.py +137 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner.py +115 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +115 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +168 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +191 -0
- crypticorn/auth/client/models/list_wallets200_response_data_inner.py +102 -0
- crypticorn/auth/client/models/list_wallets200_response_user_value.py +118 -0
- crypticorn/auth/client/models/logout_default_response.py +108 -0
- crypticorn/auth/client/models/logout_default_response_issues_inner.py +83 -0
- crypticorn/auth/client/models/refresh_token_info200_response.py +97 -0
- crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +105 -0
- crypticorn/auth/client/models/resend_verification_email_request.py +84 -0
- crypticorn/auth/client/models/revoke_user_tokens_request.py +83 -0
- crypticorn/auth/client/models/rotate_tokens200_response.py +110 -0
- crypticorn/auth/client/models/token_info200_response.py +97 -0
- crypticorn/auth/client/models/unlink_wallet_request.py +83 -0
- crypticorn/auth/client/models/update_user_request.py +93 -0
- crypticorn/auth/client/models/user_reset_password_request.py +87 -0
- crypticorn/auth/client/models/user_set_password_request.py +89 -0
- crypticorn/auth/client/models/verify200_response.py +110 -0
- crypticorn/auth/client/models/verify_email200_response.py +107 -0
- crypticorn/auth/client/models/verify_email200_response_auth.py +101 -0
- crypticorn/auth/client/models/verify_email200_response_auth_auth.py +110 -0
- crypticorn/auth/client/models/verify_email_request.py +83 -0
- crypticorn/auth/client/models/verify_wallet_request.py +91 -0
- crypticorn/auth/client/models/wallet_verified200_response.py +83 -0
- crypticorn/auth/client/models/whoami200_response.py +104 -0
- crypticorn/auth/client/rest.py +195 -0
- crypticorn/auth/main.py +45 -0
- crypticorn/client.py +46 -8
- crypticorn/common/__init__.py +5 -0
- crypticorn/common/auth.py +43 -0
- crypticorn/common/auth_client.py +163 -0
- crypticorn/common/errors.py +432 -0
- crypticorn/common/scopes.py +29 -0
- crypticorn/common/urls.py +25 -0
- crypticorn/hive/__init__.py +2 -1
- crypticorn/hive/client/__init__.py +57 -0
- crypticorn/hive/client/api/__init__.py +6 -0
- crypticorn/hive/client/api/data_api.py +594 -0
- crypticorn/hive/client/api/models_api.py +1680 -0
- crypticorn/hive/client/api/status_api.py +263 -0
- crypticorn/hive/client/api_client.py +758 -0
- crypticorn/hive/client/api_response.py +20 -0
- crypticorn/hive/client/configuration.py +612 -0
- crypticorn/hive/client/exceptions.py +220 -0
- crypticorn/hive/client/models/__init__.py +38 -0
- crypticorn/hive/client/models/coins.py +44 -0
- crypticorn/hive/client/models/data_download_response.py +113 -0
- crypticorn/hive/client/models/data_info.py +115 -0
- crypticorn/hive/client/models/data_value_value_value_inner.py +154 -0
- crypticorn/hive/client/models/data_version.py +35 -0
- crypticorn/hive/client/models/download_links.py +91 -0
- crypticorn/hive/client/models/evaluation.py +86 -0
- crypticorn/hive/client/models/evaluation_response.py +85 -0
- crypticorn/hive/client/models/feature_size.py +36 -0
- crypticorn/hive/client/models/http_validation_error.py +99 -0
- crypticorn/hive/client/models/model.py +133 -0
- crypticorn/hive/client/models/model_create.py +93 -0
- crypticorn/hive/client/models/model_status.py +35 -0
- crypticorn/hive/client/models/model_update.py +83 -0
- crypticorn/hive/client/models/target.py +36 -0
- crypticorn/hive/client/models/target_type.py +35 -0
- crypticorn/hive/client/models/validation_error.py +105 -0
- crypticorn/hive/client/models/validation_error_loc_inner.py +159 -0
- crypticorn/hive/client/py.typed +0 -0
- crypticorn/hive/client/rest.py +195 -0
- crypticorn/hive/main.py +27 -100
- crypticorn/klines/client/__init__.py +21 -7
- crypticorn/klines/client/api/__init__.py +0 -1
- crypticorn/klines/client/api/funding_rates_api.py +90 -79
- crypticorn/klines/client/api/health_check_api.py +29 -45
- crypticorn/klines/client/api/ohlcv_data_api.py +104 -87
- crypticorn/klines/client/api/symbols_api.py +36 -54
- crypticorn/klines/client/api/udf_api.py +228 -352
- crypticorn/klines/client/api_client.py +106 -148
- crypticorn/klines/client/api_response.py +2 -3
- crypticorn/klines/client/configuration.py +64 -50
- crypticorn/klines/client/exceptions.py +20 -16
- crypticorn/klines/client/models/__init__.py +21 -7
- crypticorn/klines/client/models/base_response_health_check_response.py +21 -15
- crypticorn/klines/client/models/base_response_list_funding_rate_response.py +21 -15
- crypticorn/klines/client/models/base_response_list_str.py +16 -14
- crypticorn/klines/client/models/base_response_ohlcv_response.py +21 -15
- crypticorn/klines/client/models/error_response.py +23 -15
- crypticorn/klines/client/models/exchange.py +11 -11
- crypticorn/klines/client/models/funding_rate_response.py +11 -11
- crypticorn/klines/client/models/health_check_response.py +14 -12
- crypticorn/klines/client/models/history_error_response.py +11 -11
- crypticorn/klines/client/models/history_no_data_response.py +16 -16
- crypticorn/klines/client/models/history_success_response.py +16 -16
- crypticorn/klines/client/models/http_validation_error.py +14 -10
- crypticorn/klines/client/models/market.py +2 -4
- crypticorn/klines/client/models/ohlcv_response.py +22 -15
- crypticorn/klines/client/models/resolution.py +5 -7
- crypticorn/klines/client/models/response_get_history_udf_history_get.py +71 -22
- crypticorn/klines/client/models/search_symbol_response.py +22 -15
- crypticorn/klines/client/models/sort_direction.py +2 -4
- crypticorn/klines/client/models/symbol_group_response.py +5 -9
- crypticorn/klines/client/models/symbol_info_response.py +40 -24
- crypticorn/klines/client/models/symbol_type.py +5 -10
- crypticorn/klines/client/models/timeframe.py +5 -7
- crypticorn/klines/client/models/udf_config_response.py +60 -21
- crypticorn/klines/client/models/validation_error.py +19 -13
- crypticorn/klines/client/models/validation_error_loc_inner.py +32 -11
- crypticorn/klines/client/rest.py +30 -41
- crypticorn/klines/main.py +52 -15
- crypticorn/pay/__init__.py +2 -0
- crypticorn/pay/client/__init__.py +52 -0
- crypticorn/pay/client/api/__init__.py +7 -0
- crypticorn/pay/client/api/now_payments_api.py +813 -0
- crypticorn/pay/client/api/payments_api.py +799 -0
- crypticorn/pay/client/api/products_api.py +891 -0
- crypticorn/pay/client/api/status_api.py +260 -0
- crypticorn/pay/client/api_client.py +758 -0
- crypticorn/pay/client/api_response.py +20 -0
- crypticorn/pay/client/configuration.py +612 -0
- crypticorn/pay/client/exceptions.py +220 -0
- crypticorn/pay/client/models/__init__.py +32 -0
- crypticorn/pay/client/models/api_status_res.py +83 -0
- crypticorn/pay/client/models/combined_payment_history.py +101 -0
- crypticorn/pay/client/models/create_invoice_req.py +188 -0
- crypticorn/pay/client/models/create_invoice_res.py +188 -0
- crypticorn/pay/client/models/currency.py +165 -0
- crypticorn/pay/client/models/estimate_price_req.py +91 -0
- crypticorn/pay/client/models/estimate_price_res.py +102 -0
- crypticorn/pay/client/models/get_currencies_res.py +99 -0
- crypticorn/pay/client/models/get_payment_status_res.py +222 -0
- crypticorn/pay/client/models/get_payments_list_res.py +109 -0
- crypticorn/pay/client/models/http_validation_error.py +99 -0
- crypticorn/pay/client/models/min_amount_req.py +124 -0
- crypticorn/pay/client/models/min_amount_res.py +105 -0
- crypticorn/pay/client/models/now_api_status_res.py +83 -0
- crypticorn/pay/client/models/now_create_invoice_req.py +188 -0
- crypticorn/pay/client/models/now_create_invoice_res.py +188 -0
- crypticorn/pay/client/models/now_fee_structure.py +104 -0
- crypticorn/pay/client/models/now_payment_model.py +124 -0
- crypticorn/pay/client/models/now_payment_status.py +42 -0
- crypticorn/pay/client/models/now_webhook_payload.py +181 -0
- crypticorn/pay/client/models/payment.py +231 -0
- crypticorn/pay/client/models/payment_status.py +40 -0
- crypticorn/pay/client/models/product.py +87 -0
- crypticorn/pay/client/models/product_model.py +119 -0
- crypticorn/pay/client/models/product_subs_model.py +108 -0
- crypticorn/pay/client/models/services.py +34 -0
- crypticorn/pay/client/models/unified_payment_model.py +112 -0
- crypticorn/pay/client/models/validation_error.py +105 -0
- crypticorn/pay/client/models/validation_error_loc_inner.py +159 -0
- crypticorn/pay/client/py.typed +0 -0
- crypticorn/pay/client/rest.py +195 -0
- crypticorn/pay/main.py +35 -0
- crypticorn/trade/client/__init__.py +9 -4
- crypticorn/trade/client/api/__init__.py +0 -1
- crypticorn/trade/client/api/api_keys_api.py +203 -304
- crypticorn/trade/client/api/bots_api.py +177 -250
- crypticorn/trade/client/api/exchanges_api.py +38 -57
- crypticorn/trade/client/api/futures_trading_panel_api.py +223 -321
- crypticorn/trade/client/api/notifications_api.py +247 -364
- crypticorn/trade/client/api/orders_api.py +44 -63
- crypticorn/trade/client/api/status_api.py +35 -53
- crypticorn/trade/client/api/strategies_api.py +852 -64
- crypticorn/trade/client/api/trading_actions_api.py +126 -203
- crypticorn/trade/client/api_client.py +115 -154
- crypticorn/trade/client/api_response.py +2 -3
- crypticorn/trade/client/configuration.py +128 -90
- crypticorn/trade/client/exceptions.py +21 -17
- crypticorn/trade/client/models/__init__.py +9 -4
- crypticorn/trade/client/models/action_model.py +114 -50
- crypticorn/trade/client/models/api_error_identifier.py +60 -51
- crypticorn/trade/client/models/api_error_level.py +37 -0
- crypticorn/trade/client/models/api_error_type.py +37 -0
- crypticorn/trade/client/models/api_key_model.py +49 -28
- crypticorn/trade/client/models/bot_model.py +76 -31
- crypticorn/trade/client/models/bot_status.py +37 -0
- crypticorn/trade/client/models/exchange.py +3 -5
- crypticorn/trade/client/models/execution_ids.py +14 -14
- crypticorn/trade/client/models/futures_balance.py +39 -23
- crypticorn/trade/client/models/futures_trading_action.py +98 -46
- crypticorn/trade/client/models/http_validation_error.py +15 -11
- crypticorn/trade/client/models/margin_mode.py +3 -5
- crypticorn/trade/client/models/market_type.py +3 -5
- crypticorn/trade/client/models/notification_model.py +60 -27
- crypticorn/trade/client/models/notification_type.py +4 -6
- crypticorn/trade/client/models/order_model.py +125 -65
- crypticorn/trade/client/models/order_status.py +6 -8
- crypticorn/trade/client/models/post_futures_action.py +16 -12
- crypticorn/trade/client/models/strategy_exchange_info.py +11 -12
- crypticorn/trade/client/models/strategy_model.py +66 -27
- crypticorn/trade/client/models/strategy_model_input.py +160 -0
- crypticorn/trade/client/models/strategy_model_output.py +160 -0
- crypticorn/trade/client/models/tpsl.py +35 -21
- crypticorn/trade/client/models/trading_action_type.py +5 -7
- crypticorn/trade/client/models/update_notification.py +17 -13
- crypticorn/trade/client/models/validation_error.py +20 -14
- crypticorn/trade/client/models/validation_error_loc_inner.py +33 -12
- crypticorn/trade/client/rest.py +108 -170
- crypticorn/trade/main.py +26 -19
- crypticorn-2.0.0.dist-info/METADATA +74 -0
- crypticorn-2.0.0.dist-info/RECORD +226 -0
- {crypticorn-1.0.2rc3.dist-info → crypticorn-2.0.0.dist-info}/WHEEL +1 -1
- crypticorn/hive/requirements.txt +0 -4
- crypticorn/hive/utils.py +0 -109
- crypticorn/klines/requirements.txt +0 -4
- crypticorn/klines/test/test_base_response_health_check_response.py +0 -56
- crypticorn/klines/test/test_base_response_list_funding_rate_response.py +0 -59
- crypticorn/klines/test/test_base_response_list_str.py +0 -56
- crypticorn/klines/test/test_base_response_ohlcv_response.py +0 -72
- crypticorn/klines/test/test_error_response.py +0 -57
- crypticorn/klines/test/test_exchange.py +0 -56
- crypticorn/klines/test/test_funding_rate_response.py +0 -56
- crypticorn/klines/test/test_funding_rates_api.py +0 -38
- crypticorn/klines/test/test_health_check_api.py +0 -38
- crypticorn/klines/test/test_health_check_response.py +0 -52
- crypticorn/klines/test/test_history_error_response.py +0 -53
- crypticorn/klines/test/test_history_no_data_response.py +0 -69
- crypticorn/klines/test/test_history_success_response.py +0 -87
- crypticorn/klines/test/test_http_validation_error.py +0 -58
- crypticorn/klines/test/test_market.py +0 -33
- crypticorn/klines/test/test_ohlcv_data_api.py +0 -38
- crypticorn/klines/test/test_ohlcv_response.py +0 -86
- crypticorn/klines/test/test_resolution.py +0 -33
- crypticorn/klines/test/test_response_get_history_udf_history_get.py +0 -89
- crypticorn/klines/test/test_search_symbol_response.py +0 -62
- crypticorn/klines/test/test_sort_direction.py +0 -33
- crypticorn/klines/test/test_symbol_group_response.py +0 -53
- crypticorn/klines/test/test_symbol_info_response.py +0 -84
- crypticorn/klines/test/test_symbol_type.py +0 -54
- crypticorn/klines/test/test_symbols_api.py +0 -38
- crypticorn/klines/test/test_timeframe.py +0 -33
- crypticorn/klines/test/test_udf_api.py +0 -80
- crypticorn/klines/test/test_udf_config_response.py +0 -95
- crypticorn/klines/test/test_validation_error.py +0 -60
- crypticorn/klines/test/test_validation_error_loc_inner.py +0 -50
- crypticorn/trade/requirements.txt +0 -4
- crypticorn-1.0.2rc3.dist-info/LICENSE.md +0 -19
- crypticorn-1.0.2rc3.dist-info/METADATA +0 -47
- crypticorn-1.0.2rc3.dist-info/RECORD +0 -128
- /crypticorn/{klines/test/__init__.py → auth/client/py.typed} +0 -0
- {crypticorn-1.0.2rc3.dist-info → crypticorn-2.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,226 @@
|
|
1
|
+
crypticorn/__init__.py,sha256=TL41V09dmtbd2ee07wmOuG9KJJpyvLMPJi5DEd9bDyU,129
|
2
|
+
crypticorn/client.py,sha256=PHtTaV8hWiR-IXcZhQlwEY38q-PhqQjf-JiqaN2MPWg,1844
|
3
|
+
crypticorn/auth/__init__.py,sha256=JAl1tBLK9pYLr_-YKaj581c-c94PWLoqnatTIVAVvMM,81
|
4
|
+
crypticorn/auth/main.py,sha256=ljPuO27VDiOO-jnNycBn96X8UbVHPgOUglj46ib3OjM,1336
|
5
|
+
crypticorn/auth/client/__init__.py,sha256=PAAEv-J8dFQ9NfwMonLRNVS64t0gozOq45Z_RoWuP98,4694
|
6
|
+
crypticorn/auth/client/api_client.py,sha256=H2jviD8CKiFnK1ZZXWKbSdBszBYcCQNcga9pwgM03D4,26908
|
7
|
+
crypticorn/auth/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
8
|
+
crypticorn/auth/client/configuration.py,sha256=GNyY6hld-m9Dr7YPngRP5RQGg7o90SsSsSsq7VhyGVs,17715
|
9
|
+
crypticorn/auth/client/exceptions.py,sha256=-YpFp5xzE-0eTumhedjIOkxRHATqTj9njOdoGIWa1kE,6413
|
10
|
+
crypticorn/auth/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
+
crypticorn/auth/client/rest.py,sha256=RPbNRRbq7GtH9EBsQxaKT6NtSN8pIp1NmO1SKYZ9vVo,6944
|
12
|
+
crypticorn/auth/client/api/__init__.py,sha256=c-MlPvmOXSsk_ragrcUe8WkOuCPTTpJ8maSp2sER0EU,339
|
13
|
+
crypticorn/auth/client/api/admin_api.py,sha256=Bp52mo4XPDSzVsHolqAykAFpsaioNASY8qDfAUInxgU,21223
|
14
|
+
crypticorn/auth/client/api/auth_api.py,sha256=72xZo02SGYbxNjOOdfrb4Dqiiqksiqkv1X1B10P41_s,85123
|
15
|
+
crypticorn/auth/client/api/service_api.py,sha256=xMQKbP9p6fNdJmFa3qMq2RXvE_Brt9HmtprBxEzb0Nk,12423
|
16
|
+
crypticorn/auth/client/api/user_api.py,sha256=nJJ_qD2RYDd6yQ9twHjtwhMJ9lEMSSE91IKltpFC3h0,103457
|
17
|
+
crypticorn/auth/client/api/wallet_api.py,sha256=AF6PSfv5bAnHpThe0Mtz1LD9qhWcd99lMOo7TJDGIt0,68927
|
18
|
+
crypticorn/auth/client/models/__init__.py,sha256=yrOSQbOq_ZQLDgkjJmmuPxn8vz-AeR2NOEYavs9z1e0,3786
|
19
|
+
crypticorn/auth/client/models/add_wallet200_response.py,sha256=ibNUhAku-i2Bglo6ibyQ3V-JlFFauvswYy4doZUNiN4,2559
|
20
|
+
crypticorn/auth/client/models/add_wallet_request.py,sha256=w86tiy1vtlymB7ET0opmENQiEKAGAEjXTC-w4T3LHT4,3204
|
21
|
+
crypticorn/auth/client/models/authorize_user200_response.py,sha256=tkhq7TaQK4li03HKXzrH0GzXa-GIkDVJTUKZ-Qp0USE,3381
|
22
|
+
crypticorn/auth/client/models/authorize_user200_response_auth.py,sha256=h1PFbqzF96ssj7t7dMMKiNtRjRu44kPNUydevJm8vKo,3228
|
23
|
+
crypticorn/auth/client/models/authorize_user_request.py,sha256=VZKmGc91nIhWwoKNTbYZ4oFPYuFNcLxEBvWl-HcM0r8,2981
|
24
|
+
crypticorn/auth/client/models/create_user_request.py,sha256=kqVBJatlPtoYC1-nZnP2Mx2qZP2ATXffod7hTdWtoCY,3501
|
25
|
+
crypticorn/auth/client/models/list_wallets200_response.py,sha256=OB8nKlBflpj8dXhjTeTewxjSRok3LnllZZ5ZKISDRvE,4752
|
26
|
+
crypticorn/auth/client/models/list_wallets200_response_balances_inner.py,sha256=sLebeWVenEeiHpiCgxQR8iCMlAgjtC6K8CKq6v9g-Ok,4043
|
27
|
+
crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py,sha256=rqXN7WVEhmeJxDKCSK5sxwWXvmn-Gnf810MGWwIUXII,3623
|
28
|
+
crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py,sha256=9QIu6Fewdrtk_xnkWpr4mcsW9WjvIVvTNLWqHadrC5w,6108
|
29
|
+
crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py,sha256=CTfV8C8iAuf4uZPvIe1hzMu14stinJ24EMSngI42k80,6639
|
30
|
+
crypticorn/auth/client/models/list_wallets200_response_data_inner.py,sha256=IxZrtc1CEOlwnF9Op5WEOcD-ZKrRSGrkSJSUaakoWaY,2981
|
31
|
+
crypticorn/auth/client/models/list_wallets200_response_user_value.py,sha256=e0LbNMdI77IVRt9glwquB6C790o6OWfvitlfyuIoupQ,3841
|
32
|
+
crypticorn/auth/client/models/logout_default_response.py,sha256=ioZ8FrV2DDUdCX2XIkS0X1Y2H0ZjLBCl4_5t_OzrnXE,3395
|
33
|
+
crypticorn/auth/client/models/logout_default_response_issues_inner.py,sha256=_aOp_ngnk19-YLM07nSiqClp6-l6Qa5g6u6Habd1BEc,2487
|
34
|
+
crypticorn/auth/client/models/refresh_token_info200_response.py,sha256=YZITc7MeCrKIVewQxtwOv9xcr26fFhwhnl6o59Ry024,3082
|
35
|
+
crypticorn/auth/client/models/refresh_token_info200_response_user_session.py,sha256=QUz7M-lgSDdvLg2RqFYJkTEJuZtvKlD1CB5BfXo4kFo,3101
|
36
|
+
crypticorn/auth/client/models/resend_verification_email_request.py,sha256=Gx5OONaDxeXaXU7Q30NLMIAvX1XkzmdqbuC6EPlxumk,2546
|
37
|
+
crypticorn/auth/client/models/revoke_user_tokens_request.py,sha256=Jrjg7q8HsGXzCWUNpw0N9ZelFBlX2g9VxyFywxl46EY,2479
|
38
|
+
crypticorn/auth/client/models/rotate_tokens200_response.py,sha256=EL1ML7dqVcdGf1e7LVwM7eZRuJQHF_sP-OUqFO53K1g,3554
|
39
|
+
crypticorn/auth/client/models/token_info200_response.py,sha256=Z7P3pHcb8ySELUhU6pW9OLJh8ybN3mEA3K8GivtgFOQ,2972
|
40
|
+
crypticorn/auth/client/models/unlink_wallet_request.py,sha256=n-SBkqofbSISLqutjg9jvUP1UwgIErDsMPDjQ9Lyqlo,2415
|
41
|
+
crypticorn/auth/client/models/update_user_request.py,sha256=A4BuxRHXPWV4lBNq6x9Qsd2ChCCzvhhkc3XnRr26a_I,2748
|
42
|
+
crypticorn/auth/client/models/user_reset_password_request.py,sha256=LUMfM1qbGDeBSeS90AZ24IGYsWfsxQFhLYWnf2AKMEU,2658
|
43
|
+
crypticorn/auth/client/models/user_set_password_request.py,sha256=AHV9dlveY9dRI4ymj8CixfMYiMRPCb1uUXCichTHbmQ,2660
|
44
|
+
crypticorn/auth/client/models/verify200_response.py,sha256=Hfa1BkQoNfgYxy0r849IGOJiOv-Re95Blfjp99yKmP4,3245
|
45
|
+
crypticorn/auth/client/models/verify_email200_response.py,sha256=xyt3WdW0u3FosgtUc0MgifJy2t4pgak3-J1LwUjMGek,3365
|
46
|
+
crypticorn/auth/client/models/verify_email200_response_auth.py,sha256=W-0qvqI7BMEbjQh92cj4ccD-_6oe0apD9-kG-TxUquM,3247
|
47
|
+
crypticorn/auth/client/models/verify_email200_response_auth_auth.py,sha256=bc819T0UqSCxb7-Hgtkme8W4TgUzHuhGdc9lOFX0pP0,3297
|
48
|
+
crypticorn/auth/client/models/verify_email_request.py,sha256=8MBfxPTLn5X6Z3vE2blxmOtqDhU9tu7O7AyaxkHBG6w,2464
|
49
|
+
crypticorn/auth/client/models/verify_wallet_request.py,sha256=b0DAocvhKzPXPjM62DZqezlHxq3cNL7UVKl0d2judHQ,2691
|
50
|
+
crypticorn/auth/client/models/wallet_verified200_response.py,sha256=QILnTLsCKdI-WdV_fsLBy1UH4ZZU-U-wWJ9ot8v08tI,2465
|
51
|
+
crypticorn/auth/client/models/whoami200_response.py,sha256=uehdq5epgeOphhrIR3tbrseflxcLAzGyKF-VW-o5cY8,2974
|
52
|
+
crypticorn/common/__init__.py,sha256=lY87VMTkIEqto6kcEjC1YWsUvT03QuPmXwxCaeWE854,196
|
53
|
+
crypticorn/common/auth.py,sha256=pqmn5wG9CWql7wwAOs3p8zWlR2XyOzcoA17xgC6KsjA,1213
|
54
|
+
crypticorn/common/auth_client.py,sha256=PlMBSQ_SyWGvZQsc97DlokoWLprwlo0r9-oftD89Rps,5564
|
55
|
+
crypticorn/common/errors.py,sha256=jGAS7TONKhdaRfft7w-0wrJ3BBTzqS6u03susiqAF0w,12723
|
56
|
+
crypticorn/common/scopes.py,sha256=60dLff6zADjkKLwsOrwfpgFoCQjh3fqBS5Mpe5PonaU,991
|
57
|
+
crypticorn/common/urls.py,sha256=_NMhvhZXOsZpDBbgucqu0yboRFox6JVMlOoQq_Y5SGA,432
|
58
|
+
crypticorn/hive/__init__.py,sha256=hRfTlEzEql4msytdUC_04vfaHzVKG5CGZle1M-9QFgY,81
|
59
|
+
crypticorn/hive/main.py,sha256=RmCYSR0jwmfYWTK89dt79DuGPjEaip9XQs_LWNWr_tc,1036
|
60
|
+
crypticorn/hive/client/__init__.py,sha256=DIj3v16Yq5l6yMPoywrL2sOvQ6ZqpAsSJuhssIp8JFQ,2396
|
61
|
+
crypticorn/hive/client/api_client.py,sha256=KAz4MLfl1U6HCTx4qDWnWlIR6_SF4Q3Bq_Uq7OhHkT8,26889
|
62
|
+
crypticorn/hive/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
63
|
+
crypticorn/hive/client/configuration.py,sha256=cIBk6UOeVSdXYh5q073RBlhjuN9i-mk62ysjuUw662Y,18707
|
64
|
+
crypticorn/hive/client/exceptions.py,sha256=kehD80lO7G7pIuQ1Y-aQpLlObNNPkpRRSBDVetOdQMM,6394
|
65
|
+
crypticorn/hive/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
+
crypticorn/hive/client/rest.py,sha256=41J2lBfJBlBHtG1Gc-M8a9QaOptF477gOG7WUtAOKTw,6925
|
67
|
+
crypticorn/hive/client/api/__init__.py,sha256=y0KYdyqWZTjlf6IKASYmLdUs9a2aiFMHrfQO_V_-ZUw,223
|
68
|
+
crypticorn/hive/client/api/data_api.py,sha256=qCwW8eb4GDRZHlk8TSrLgqYF0Jnlg4AAUyFXAscfGrE,23578
|
69
|
+
crypticorn/hive/client/api/models_api.py,sha256=HMZgq0n6mpPsBaNPHOlL_3VnpNT3FEKsllWiYjgsR1E,65917
|
70
|
+
crypticorn/hive/client/api/status_api.py,sha256=Usf8WkFNJgSCxw-r5VjJ2OAvRqUtRuA__Qpig9ePBO0,9972
|
71
|
+
crypticorn/hive/client/models/__init__.py,sha256=SGNc-2c1P4G1fDRky27EC5nczokQNDg2q8ELrYmRyi0,1604
|
72
|
+
crypticorn/hive/client/models/coins.py,sha256=aoiT2jaNqdMjaitKGyeZw8meOe-jB_5I0RtSEgWC_9c,834
|
73
|
+
crypticorn/hive/client/models/data_download_response.py,sha256=boaPKPRPCYkkDztDKVc4cjaqX92f83ONNudC-y78NMA,3445
|
74
|
+
crypticorn/hive/client/models/data_info.py,sha256=aX13WDeGVWG9rErzp7yR9Cv1rEOwHQ1ASwx_LiV2Dec,3569
|
75
|
+
crypticorn/hive/client/models/data_value_value_value_inner.py,sha256=V0cMgdcnYMMDoBWcuIs4Qqsqfmq7uRdIHrwLmWogpFg,5007
|
76
|
+
crypticorn/hive/client/models/data_version.py,sha256=qf5bxm8OnYs7nboJosaOcRH83xTvSJ3mxbwli37_QkE,713
|
77
|
+
crypticorn/hive/client/models/download_links.py,sha256=ANnre9BvDghLhizOeN4ttnmcc_-ahk-Xff2ieLMBweo,2659
|
78
|
+
crypticorn/hive/client/models/evaluation.py,sha256=xxXeuHSAHPUec7eJeEvgeeHd7d7frwTGtCOHXRfDAWA,2628
|
79
|
+
crypticorn/hive/client/models/evaluation_response.py,sha256=l_qBT6myOXXvRPtdxxfmBJdlgM_I-bKmldQXMSQsvGA,2546
|
80
|
+
crypticorn/hive/client/models/feature_size.py,sha256=2OGwBpxzr-rYQX8xj9iYBgEe91DqLBdKId1qp_RFYOM,725
|
81
|
+
crypticorn/hive/client/models/http_validation_error.py,sha256=nQ8bU92dgzHFIGCEF2hZqEVDpK0h5c1ytZO9tjt7UUY,3056
|
82
|
+
crypticorn/hive/client/models/model.py,sha256=Y5tjuObXuNTF3QHPH7uNsP8IJiv5zZm9KDgNq9CZhL0,4574
|
83
|
+
crypticorn/hive/client/models/model_create.py,sha256=lezh0fAzI2G5xnXqat-qhOVtPadmP4HNQ5_-Mh5Alfw,2848
|
84
|
+
crypticorn/hive/client/models/model_status.py,sha256=UCVQHjJwK8ugZzCZcH64WAqa45a8sgWLElHlS8ciT88,705
|
85
|
+
crypticorn/hive/client/models/model_update.py,sha256=Mt_IG3Yrf5nBKkI30nK9bBDap9QoOGmRFbCtsON__j0,2433
|
86
|
+
crypticorn/hive/client/models/target.py,sha256=Qv1Z7dyY_h58GJPJoiNhiAgmyyZ3DVoI2xt08IC_HYE,717
|
87
|
+
crypticorn/hive/client/models/target_type.py,sha256=8mdPpdfY_HZCMHhAWqiC1FQlrGSLJDOooeRQnyzxa5k,692
|
88
|
+
crypticorn/hive/client/models/validation_error.py,sha256=YUfTXf3JIoubcwOkCqoNB4agJ6RrBIkJOFDfEjvgEiA,3166
|
89
|
+
crypticorn/hive/client/models/validation_error_loc_inner.py,sha256=YeiVGPRvKAIijEbK6-fAnVo1A4U2d5d_LOyZ7P3jPoY,5070
|
90
|
+
crypticorn/klines/__init__.py,sha256=9UUW013uZ5x4evz5zRUxbNid-6O9WAPPYvPZIHpAwms,87
|
91
|
+
crypticorn/klines/main.py,sha256=Md1VqaFSwlbO9ZY4v8VIBYQr2kuYnsxgfaDpisDFarA,2187
|
92
|
+
crypticorn/klines/client/__init__.py,sha256=i4zgrQsA1BXPYa0YLnSOrStKk1iJyJw-2KDOtTDdizg,3795
|
93
|
+
crypticorn/klines/client/api_client.py,sha256=Sih490VSmIfdDEq0A_ULlx7HR_e03bExGYta1kZEO7Y,27135
|
94
|
+
crypticorn/klines/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
95
|
+
crypticorn/klines/client/configuration.py,sha256=TC94Yk0_7ZSOwv_KuqnSbxA0BpCFqFvjbR7vrGBlzWo,18017
|
96
|
+
crypticorn/klines/client/exceptions.py,sha256=TlbbWk-rYbzR4im1prdyzhVe_btHSeNTRPrvlN8bbik,6735
|
97
|
+
crypticorn/klines/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
|
+
crypticorn/klines/client/rest.py,sha256=KQv_jWLyX6hglTGnkwmyx1lbhxXYLwpOOFxFw-sY5XA,9577
|
99
|
+
crypticorn/klines/client/api/__init__.py,sha256=tRQmMddxTSziJtpnSvv8qmoN14G4-OZ6TBJFsV1el2E,384
|
100
|
+
crypticorn/klines/client/api/funding_rates_api.py,sha256=fYUNEZksbQgiUtWLuOh7kxaZ3VUHZ8ccl0dpWfYr5Ws,14819
|
101
|
+
crypticorn/klines/client/api/health_check_api.py,sha256=fBr0Eb8yAEym_5XyIcChtkuhi5S94nSFtJtNPclRA3k,10624
|
102
|
+
crypticorn/klines/client/api/ohlcv_data_api.py,sha256=xSEmy1xULgUHpadNu1WJcQEJnM9elveKhohZamiIOkc,17265
|
103
|
+
crypticorn/klines/client/api/symbols_api.py,sha256=IM9OSMrNV9IibHKfl1JZHMWJz1c322joDku-C2cfFok,11829
|
104
|
+
crypticorn/klines/client/api/udf_api.py,sha256=0mN78eKMcLbzUhEGMdyRI_7gArOblvu4-nX7zj5KOnA,71197
|
105
|
+
crypticorn/klines/client/models/__init__.py,sha256=2x4YXG0igVLXxqKp7Z3p1A2fIyEqC2magi4SyFRWnUI,2824
|
106
|
+
crypticorn/klines/client/models/base_response_health_check_response.py,sha256=Bklwq5sZ9U4J0JNfI15rDyhjcRjvOg7D0tVOwBENI5I,4108
|
107
|
+
crypticorn/klines/client/models/base_response_list_funding_rate_response.py,sha256=6LbW0kBtYQ1Y2AJkGsG5K30rSIeT1d1Hb8wahNcfUZ0,4306
|
108
|
+
crypticorn/klines/client/models/base_response_list_str.py,sha256=es5P1jpKnoPumKFdkYPn7kwSzTjmi1obs-dBiqzMmOQ,3669
|
109
|
+
crypticorn/klines/client/models/base_response_ohlcv_response.py,sha256=-KJRGpM4cbn5HDmESyWwsCHGHZDBUv_IygJAitPgxM8,4059
|
110
|
+
crypticorn/klines/client/models/error_response.py,sha256=6oGleGmUJVV2Aw-gyvAdC-mUdd5-Mrm0-IxwDjqyOAU,3582
|
111
|
+
crypticorn/klines/client/models/exchange.py,sha256=0UUR__ZCv3QBEJ7N7fHA84tLL9laBjVT7dbUN0M0ra0,2896
|
112
|
+
crypticorn/klines/client/models/funding_rate_response.py,sha256=Uiffp0txF6Zt4LxNheMZts4rkDJmrDn8ghac2a-zh6w,3076
|
113
|
+
crypticorn/klines/client/models/health_check_response.py,sha256=cvq3_wo7beOdP_Qhk2xwsGVZweZ9JSSKEllbbUawG6I,3064
|
114
|
+
crypticorn/klines/client/models/history_error_response.py,sha256=_76OcNDY2DtBq3TJbJaOmDrrySLNFB4G8N7f3bS0Vo0,2938
|
115
|
+
crypticorn/klines/client/models/history_no_data_response.py,sha256=5oDuue-gpt4yt9Ys9MoGfvPmspoEhGtESfyT9-XsMYQ,3480
|
116
|
+
crypticorn/klines/client/models/history_success_response.py,sha256=1qHwABwcivj7kUQQVt6qg_YOE9ldjVd9QjL8Vgt3GOo,3372
|
117
|
+
crypticorn/klines/client/models/http_validation_error.py,sha256=tR2aJ09RIG-Klyxu-SEAU6x_508Ua2x9SnnN98neamw,3399
|
118
|
+
crypticorn/klines/client/models/market.py,sha256=kn3ZBR46LNGbUy1m0xdyQqUkF4ZtoBOIq3ZODx46aZk,1011
|
119
|
+
crypticorn/klines/client/models/ohlcv_response.py,sha256=lCUSkG4b5a4uKNYXUAnX0F3lACzJ7YhHPAy8cLJ2y_U,3387
|
120
|
+
crypticorn/klines/client/models/resolution.py,sha256=FnzO79LuAvlKv96l3SHuzDtMac-leJdheQUf5G2GIH4,1078
|
121
|
+
crypticorn/klines/client/models/response_get_history_udf_history_get.py,sha256=gMBd2Ef5WfB7N6F_Dqf6HGyVauuDFOBCBmhpu8sgf-0,6907
|
122
|
+
crypticorn/klines/client/models/search_symbol_response.py,sha256=FKovQF7x3AtclBDjDJCpdksNxQ3mB3Au_lXnUjxU4OA,3282
|
123
|
+
crypticorn/klines/client/models/sort_direction.py,sha256=Y6lWJTeYEMh3xevvN5niCEPXR5thMTUwNZDSq66vhjs,1024
|
124
|
+
crypticorn/klines/client/models/symbol_group_response.py,sha256=3Tj2pP1NUbiYn0pU8QAiwe_5Aq8wr3SYua-8qDfydQQ,2786
|
125
|
+
crypticorn/klines/client/models/symbol_info_response.py,sha256=kn2keJkuf6rSl8gJl-yaD4KqPXgSFVsDyMczRUe7KY0,4347
|
126
|
+
crypticorn/klines/client/models/symbol_type.py,sha256=uSAkMztAw2GNs1hWqek8KftwcVXO5mTp8rAUsbrrPJs,2766
|
127
|
+
crypticorn/klines/client/models/timeframe.py,sha256=MD4l74KnVeFr2fXJXrR8Wos58_5vGoiFfJ3Pj0vsSQw,1077
|
128
|
+
crypticorn/klines/client/models/udf_config_response.py,sha256=VRBMwoCmtjSooF_TxqcofGmT0JYd0HAVqjGdOWJXeds,5982
|
129
|
+
crypticorn/klines/client/models/validation_error.py,sha256=TMfS5WKx6jSNPdppQA5Yax-r3k0Gn31raWyTZPMsDPg,3509
|
130
|
+
crypticorn/klines/client/models/validation_error_loc_inner.py,sha256=tUClZ2b89NWJWHagBsZ5rlEjiV1vn4sgpAncHKUIZRg,5411
|
131
|
+
crypticorn/pay/__init__.py,sha256=ux-B-YbNetpTlZTb2fijuGUOEmSm4IB0fYtieGnVDBg,78
|
132
|
+
crypticorn/pay/main.py,sha256=DbwP_DI5Zp3Ow-Fq2khnnb0hOvrpA29e-jeRyrCCbBs,1075
|
133
|
+
crypticorn/pay/client/__init__.py,sha256=Ax4LEkrKOq6MNP7c5cLG-XQifmUJZ0QLWoqgJTwnkps,2324
|
134
|
+
crypticorn/pay/client/api_client.py,sha256=kZqhvF9r2vqqOYnnu6hTAQVWPmzjFKhC9efShUCfr7o,26944
|
135
|
+
crypticorn/pay/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
136
|
+
crypticorn/pay/client/configuration.py,sha256=qD6Vgq5zSzByNeSdRvDFuh2TZ42B_d70a7ZWQ5pJ2G8,18798
|
137
|
+
crypticorn/pay/client/exceptions.py,sha256=MDc2SQUS-0mvq7uH_XGfJxYNIRsDrxhRim0CELMn23E,6455
|
138
|
+
crypticorn/pay/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
|
+
crypticorn/pay/client/rest.py,sha256=6ZLCKhRuEMURb6glMbPriHGoN0uspDC_hvlFDKCALxo,6985
|
140
|
+
crypticorn/pay/client/api/__init__.py,sha256=vbisPmBd4c5G3_MHAlInKeu1obSr8witdtwxC43BnN8,302
|
141
|
+
crypticorn/pay/client/api/now_payments_api.py,sha256=p5yDnk7gOPZWAkvhFElIoSn_dAoR1S_rbOKlVkhtITI,33456
|
142
|
+
crypticorn/pay/client/api/payments_api.py,sha256=rHjyL13uyi5dkx5ZKWviO44sGeLqhL0Sik6BN1nUZYE,31900
|
143
|
+
crypticorn/pay/client/api/products_api.py,sha256=_oAX8iSdAsUf4VCCwkJuIrW3ipyj9PKIvwl0xkoQHt8,34315
|
144
|
+
crypticorn/pay/client/api/status_api.py,sha256=8QRvrCSHBRW0n7NlIEA6LDGhsy6Wx4WqPRH81e1X2gs,9928
|
145
|
+
crypticorn/pay/client/models/__init__.py,sha256=G1jzecOjvytyRDIXkhilJ_iTHV6UnrT0FTODUqAl9zE,1462
|
146
|
+
crypticorn/pay/client/models/api_status_res.py,sha256=Dt5g0wvtyIkkVcXyFjXzxokeqZb-Y0rJr_YljjeVcfw,2514
|
147
|
+
crypticorn/pay/client/models/combined_payment_history.py,sha256=FxXpYL4ml1ndTWXP3whAQ0g7GNoqRuVpP_4m3dsT1vg,3194
|
148
|
+
crypticorn/pay/client/models/create_invoice_req.py,sha256=-Ru0Tg6sRu2g_mjmHrQEv6WnLlBOSbsxz2LLWZms5hM,6709
|
149
|
+
crypticorn/pay/client/models/create_invoice_res.py,sha256=irdNTmj4YgJ1n48fE60kMg509AP7AqGy1DpxtDMkgTE,7022
|
150
|
+
crypticorn/pay/client/models/currency.py,sha256=W-ktKONt53zwRW7vI4GfutgFQ4Q3U_N5TSQrXusSNyI,6043
|
151
|
+
crypticorn/pay/client/models/estimate_price_req.py,sha256=E5680nc78hf0moT4qCUO1PVInm2mB08hUuIzMUJFhbs,3170
|
152
|
+
crypticorn/pay/client/models/estimate_price_res.py,sha256=AUTvQlB5W56ndmqwX3J2CGU9X_zG2m0748eyZU6yI_8,3424
|
153
|
+
crypticorn/pay/client/models/get_currencies_res.py,sha256=fTDWN_ygzrlX-quh0baIhvsbK163EeOZwcTlAAQbN7Y,3200
|
154
|
+
crypticorn/pay/client/models/get_payment_status_res.py,sha256=Yhfx8rkPItdLsafYows8nu-HXYGOkzbpuRMxgkqMp1g,8543
|
155
|
+
crypticorn/pay/client/models/get_payments_list_res.py,sha256=bSsO8MZ6T309P5RMjZ6ek-K2OsBZTc752dQEW9bDHkY,3732
|
156
|
+
crypticorn/pay/client/models/http_validation_error.py,sha256=szHkBVP4zvqFbDlMoDg6tZSIFRYHMTa9DZ4Lh-T_6Xg,3116
|
157
|
+
crypticorn/pay/client/models/min_amount_req.py,sha256=L9VBwnWKEyzzeSHY2bL5NsqNxcQ8sc-v8lteNj3MCfQ,4977
|
158
|
+
crypticorn/pay/client/models/min_amount_res.py,sha256=cy9hhchJkU9TbJjmngzUOUnE3PbGJGAXOHlrm4TWO84,3537
|
159
|
+
crypticorn/pay/client/models/now_api_status_res.py,sha256=Fco2iaOa9qZFsg_dWNaVh7bipzzIi9CX_ADFhepbdwY,2523
|
160
|
+
crypticorn/pay/client/models/now_create_invoice_req.py,sha256=hpxYvG4dSEUOK3jc1cgMUKOg_0NO8X5xp2jezk0mOKY,6718
|
161
|
+
crypticorn/pay/client/models/now_create_invoice_res.py,sha256=xCxAJDXJWFThIeo-om7HTWul1yH9eeiRLiTciLSRtB0,7031
|
162
|
+
crypticorn/pay/client/models/now_fee_structure.py,sha256=aGsxYVU83iAVjzb_ui8Rm5KOA6Py73rkeHEoWt_mLa4,3240
|
163
|
+
crypticorn/pay/client/models/now_payment_model.py,sha256=8HRibX74KMJnXZE3IW8TC00JThmRY3jX9nWnCI16d34,4155
|
164
|
+
crypticorn/pay/client/models/now_payment_status.py,sha256=nvjz7KucgtqmDsLfd3Khg0IK-xtPRgzXuc5hWfSOdRw,975
|
165
|
+
crypticorn/pay/client/models/now_webhook_payload.py,sha256=2h4qfzw6F0RgTv-8IxO2o2-nC3rM_3QkehYHFBRtm3s,6846
|
166
|
+
crypticorn/pay/client/models/payment.py,sha256=dPt7eMCNcdiZdZ_Mf_4W0tkufz95YJ9Cdyq8IuIQRgE,8797
|
167
|
+
crypticorn/pay/client/models/payment_status.py,sha256=Nr__kC34aCKqSk-Gq3-mt0SI5bOTlKB1uz9hKGj8sSc,897
|
168
|
+
crypticorn/pay/client/models/product.py,sha256=ndBOZ2ED2T37VDpgbdQOG_WqwK2zlOQYnkwuLcgGrC0,2592
|
169
|
+
crypticorn/pay/client/models/product_model.py,sha256=WTiIvF6aKQO47uVwc2-horPtaVJc0nVzY34ldM0UJH4,3511
|
170
|
+
crypticorn/pay/client/models/product_subs_model.py,sha256=EbqWBAfin-sn5A8Do5F4EwI59lvCQp3Bp6-lCr0gfYA,3375
|
171
|
+
crypticorn/pay/client/models/services.py,sha256=OJXhv7l2rLKoqrQWNvzBD8eYykan-1KHMJG3TeKVuUk,729
|
172
|
+
crypticorn/pay/client/models/unified_payment_model.py,sha256=_Y9OtWZ-N7QDxsCte0UlMsRlPXKnp4uk2GbxXCPjAGA,3641
|
173
|
+
crypticorn/pay/client/models/validation_error.py,sha256=vzw1GCCSx0Tct-t8b4IfNQe4jaioantmwbwz2Cmi4AA,3226
|
174
|
+
crypticorn/pay/client/models/validation_error_loc_inner.py,sha256=8Fp046J4qWnAIBATnrzS9qiKZKDY4C3UxSOJo9DTTcQ,5131
|
175
|
+
crypticorn/trade/__init__.py,sha256=QzScH9n-ly3QSaBSpPP7EqYwhdzDqYCZJs0-AhEhrsY,84
|
176
|
+
crypticorn/trade/main.py,sha256=UapbqtrjsgpjouNuCYxnP8iqcSEMRWCvxq8uN-JecvU,1520
|
177
|
+
crypticorn/trade/client/__init__.py,sha256=Wa4Pn_QmZfZpScj3eM5hTh1gxcg9j9O13jImEySmQJ0,3480
|
178
|
+
crypticorn/trade/client/api_client.py,sha256=GZFlYDIxGpPWtK6CnTqZLN8kWSSSzcdziNY4kTB1hE4,26956
|
179
|
+
crypticorn/trade/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
180
|
+
crypticorn/trade/client/configuration.py,sha256=oKoYO-ruCy5NvfEcQ2RSoJeK97OggnApSzIwCxZJOXA,18802
|
181
|
+
crypticorn/trade/client/exceptions.py,sha256=xSXlQpvCm5JkPI_N49jdTm72mSHMLOIDQ3goHqgyx5s,6455
|
182
|
+
crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
183
|
+
crypticorn/trade/client/rest.py,sha256=o2sJyURJxO3XckjU_VuASM5AN0R5TsRcH1vtKCR97oI,6987
|
184
|
+
crypticorn/trade/client/api/__init__.py,sha256=s6jcukWHyom8Bp9Vj0yrOL37-dNPNvdvMK_aXwpKZzc,668
|
185
|
+
crypticorn/trade/client/api/api_keys_api.py,sha256=AYZR8lD5hbZ87PZcjIjE8qV4SC2jqu8i-OtTJb2fZYk,53142
|
186
|
+
crypticorn/trade/client/api/bots_api.py,sha256=4NH_qpRqBa_UXufF7jQolHSgRTIklKUlbuqpoKjqeDA,43812
|
187
|
+
crypticorn/trade/client/api/exchanges_api.py,sha256=6hwWaWbqRwe_sdkncX9XMvvSQLAVgibe7eMnu7QIed8,10789
|
188
|
+
crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=ZFpqNBhkIh5wuNz5LaQIj7fl9ycrc5Ge7NLHoaIaMTY,52997
|
189
|
+
crypticorn/trade/client/api/notifications_api.py,sha256=niQax595vM-PF_9E8D9kcqtBXOYdeabLHJWqPRrIQXA,64304
|
190
|
+
crypticorn/trade/client/api/orders_api.py,sha256=q9QboML_-adiQNuEr63Ztn4hESddfPb8Myxs4jAG3Jg,11684
|
191
|
+
crypticorn/trade/client/api/status_api.py,sha256=deaW23XWpUMqhFzxO9GqT0MI8ZlAIC_f4ewdPLExBMw,9934
|
192
|
+
crypticorn/trade/client/api/strategies_api.py,sha256=7I8Es4NuLAAh_oAdpDeyNjlvdd6ANyqf3PG6A9VCkWs,44268
|
193
|
+
crypticorn/trade/client/api/trading_actions_api.py,sha256=xz58Or9DaYa9LazvEOZK7RyqtEnHf9aREH9R5NFX0J4,32885
|
194
|
+
crypticorn/trade/client/models/__init__.py,sha256=qn31GdssVyCozLVuFZfK11ju9yDwY-Y3okMyn_ZmuRA,2234
|
195
|
+
crypticorn/trade/client/models/action_model.py,sha256=W-6IJl9KgeiBkZc95HH9kdvmmb-vzYtJ-HfKN0YzC_U,10131
|
196
|
+
crypticorn/trade/client/models/api_error_identifier.py,sha256=cixOTsuc_K_PoGq0pEk4d07rUckxvg3CIKhd9Z6tADs,3802
|
197
|
+
crypticorn/trade/client/models/api_error_level.py,sha256=GJpETKQqVEs3ZPJVkBQ3npXYtIXaS_RSk0ZKHi-6yf0,796
|
198
|
+
crypticorn/trade/client/models/api_error_type.py,sha256=ANXQ3lPxQ9Jyh_-Q4ljHFHt5uH6ljBHPzK7SDy7etek,840
|
199
|
+
crypticorn/trade/client/models/api_key_model.py,sha256=CM6BeEc3ctmfLMnRht-_k_WDCjGWreOI7670h4KhhAM,5281
|
200
|
+
crypticorn/trade/client/models/bot_model.py,sha256=t1VetjZs20-ekukHlwBaOwvMiDuZ3-hjQa1V6iaUYtE,5875
|
201
|
+
crypticorn/trade/client/models/bot_status.py,sha256=p0oRXdqjqDwE1mcHjWjUwqqmWGIi1jTFWi8FgwArUOg,796
|
202
|
+
crypticorn/trade/client/models/exchange.py,sha256=NF2pJ3978cGN7zWzgmRP4zMp1T8aK7f3TbV6kTMDcnE,748
|
203
|
+
crypticorn/trade/client/models/execution_ids.py,sha256=7EO_v4LErOlLVbTCL412ST0GpstJOcn2A3zAA04VC6w,2876
|
204
|
+
crypticorn/trade/client/models/futures_balance.py,sha256=JAUaPUkV0AlQZxrlOtpqkd6HOP4jkdpYZ6gyvGbAmG8,4181
|
205
|
+
crypticorn/trade/client/models/futures_trading_action.py,sha256=aRXn0NeziJ_TuYvPsRWsBekWZiXvI7ZJoq-NXtoW_40,9498
|
206
|
+
crypticorn/trade/client/models/http_validation_error.py,sha256=7rSmsYpBLuxIkCgl2pM-U3jCLeRSAX4s9s1CzsdE_1s,3118
|
207
|
+
crypticorn/trade/client/models/margin_mode.py,sha256=Y02aSytOfvROKDZHrdD2xHOCDbW6tT9YL3fNkDyGIus,767
|
208
|
+
crypticorn/trade/client/models/market_type.py,sha256=38cCEUR_8X0Fbxq6fa1-BagTfEuZ2gsO3kihYs7ngCA,747
|
209
|
+
crypticorn/trade/client/models/notification_model.py,sha256=pZc15SJRWPxGWjrKyEtJFLbBEPe-hBvQX9bOOjFeGQg,5010
|
210
|
+
crypticorn/trade/client/models/notification_type.py,sha256=-mFFlW34BEbhIDP_SuAgDWUGlMggvs1HLB2Q76QIa7I,801
|
211
|
+
crypticorn/trade/client/models/order_model.py,sha256=uAP7WxfiNpqV4qdX0UZxjKf70WaelEAVDJlgVTonc3M,12682
|
212
|
+
crypticorn/trade/client/models/order_status.py,sha256=cCS3aGJmqqVhoZ1JfLS-DeRj5qj-D82AI5OFblhAsik,842
|
213
|
+
crypticorn/trade/client/models/post_futures_action.py,sha256=b2HrhvawLj5zju-DXtUl6Cl9thb03-SkP48OEUIEWX8,3113
|
214
|
+
crypticorn/trade/client/models/strategy_exchange_info.py,sha256=YCxqNTgTM9uYKhkpMdMd3Ol681sIito5h37u94o0uSk,2831
|
215
|
+
crypticorn/trade/client/models/strategy_model.py,sha256=bflR-uWhIvrMjTBv6S0JpCO9NiYh588_vqZnmz-fcm4,5636
|
216
|
+
crypticorn/trade/client/models/strategy_model_input.py,sha256=fRHX4shmmFoTMW9FfASbxS4TqEixDxJ8COiOY99LtxE,5807
|
217
|
+
crypticorn/trade/client/models/strategy_model_output.py,sha256=e2bJnZ7IvWr9ch6cWiZzRy5fZODksgmr6wjbTku1gOM,5811
|
218
|
+
crypticorn/trade/client/models/tpsl.py,sha256=QGPhcgadjxAgyzpRSwlZJg_CDLnKxdZgseSpjNnkogo,4341
|
219
|
+
crypticorn/trade/client/models/trading_action_type.py,sha256=jW0OsNz_ZNXlITxAfh979BH5U12oTXSr6qUVcKcGHhw,847
|
220
|
+
crypticorn/trade/client/models/update_notification.py,sha256=B9QUuVRNpk1e5G8o0WFgIg3inm-OX7KJAJcjVnRzYx8,3046
|
221
|
+
crypticorn/trade/client/models/validation_error.py,sha256=uTkvsKrOAt-21UC0YPqCdRl_OMsuu7uhPtWuwRSYvv0,3228
|
222
|
+
crypticorn/trade/client/models/validation_error_loc_inner.py,sha256=22ql-H829xTBgfxNQZsqd8fS3zQt9tLW1pj0iobo0jY,5131
|
223
|
+
crypticorn-2.0.0.dist-info/METADATA,sha256=WEAVy4EuJjyFyULElXpwnA3eyiqt5yeX7eGrwk_HVI4,2804
|
224
|
+
crypticorn-2.0.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
225
|
+
crypticorn-2.0.0.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
|
226
|
+
crypticorn-2.0.0.dist-info/RECORD,,
|
crypticorn/hive/requirements.txt
DELETED
crypticorn/hive/utils.py
DELETED
@@ -1,109 +0,0 @@
|
|
1
|
-
import requests
|
2
|
-
import os
|
3
|
-
import tqdm
|
4
|
-
import logging
|
5
|
-
from pydantic import BaseModel
|
6
|
-
from typing import List, Dict, Any
|
7
|
-
|
8
|
-
logger = logging.getLogger(__name__)
|
9
|
-
logger.setLevel(logging.INFO)
|
10
|
-
|
11
|
-
if not logger.handlers:
|
12
|
-
console_handler = logging.StreamHandler()
|
13
|
-
console_handler.setLevel(logging.INFO)
|
14
|
-
|
15
|
-
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
|
16
|
-
console_handler.setFormatter(formatter)
|
17
|
-
|
18
|
-
logger.addHandler(console_handler)
|
19
|
-
|
20
|
-
def download_file(url: str, dest_path: str, show_progress_bars: bool = True):
|
21
|
-
"""downloads a file and shows a progress bar. allow resuming a download"""
|
22
|
-
file_size = 0
|
23
|
-
req = requests.get(url, stream=True, timeout=600)
|
24
|
-
req.raise_for_status()
|
25
|
-
|
26
|
-
total_size = int(req.headers.get('content-length', 0))
|
27
|
-
temp_path = dest_path + ".temp"
|
28
|
-
|
29
|
-
if os.path.exists(dest_path):
|
30
|
-
logger.info(f" file already exists: {dest_path}")
|
31
|
-
file_size = os.stat(dest_path).st_size
|
32
|
-
if file_size == total_size:
|
33
|
-
return dest_path
|
34
|
-
|
35
|
-
if os.path.exists(temp_path):
|
36
|
-
file_size = os.stat(temp_path).st_size
|
37
|
-
|
38
|
-
if file_size < total_size:
|
39
|
-
# Download incomplete
|
40
|
-
logger.info(" resuming download")
|
41
|
-
resume_header = {'Range': f'bytes={file_size}-'}
|
42
|
-
req = requests.get(url, headers=resume_header, stream=True,
|
43
|
-
verify=False, allow_redirects=True, timeout=600)
|
44
|
-
else:
|
45
|
-
# Error, delete file and restart download
|
46
|
-
logger.error(f" deleting file {dest_path} and restarting")
|
47
|
-
os.remove(temp_path)
|
48
|
-
file_size = 0
|
49
|
-
else:
|
50
|
-
# File does not exist, starting download
|
51
|
-
logger.info(" starting download")
|
52
|
-
|
53
|
-
# write dataset to file and show progress bar
|
54
|
-
pbar = tqdm.tqdm(total=total_size, unit='B', unit_scale=True,
|
55
|
-
desc=dest_path, disable=not show_progress_bars)
|
56
|
-
# Update progress bar to reflect how much of the file is already downloaded
|
57
|
-
pbar.update(file_size)
|
58
|
-
with open(temp_path, "ab") as dest_file:
|
59
|
-
for chunk in req.iter_content(1024):
|
60
|
-
dest_file.write(chunk)
|
61
|
-
pbar.update(1024)
|
62
|
-
# move temp file to target destination
|
63
|
-
os.replace(temp_path, dest_path)
|
64
|
-
return dest_path
|
65
|
-
|
66
|
-
|
67
|
-
class SingleModel(BaseModel):
|
68
|
-
coin_id: int
|
69
|
-
evaluations: List[Dict[str, Any]]
|
70
|
-
created: str
|
71
|
-
model_id: int
|
72
|
-
name: str
|
73
|
-
status: str
|
74
|
-
target: str
|
75
|
-
updated: str
|
76
|
-
dev_id: str
|
77
|
-
target_type: str
|
78
|
-
class Config:
|
79
|
-
protected_namespaces = ()
|
80
|
-
|
81
|
-
|
82
|
-
class AllModels(BaseModel):
|
83
|
-
models: List[SingleModel]
|
84
|
-
|
85
|
-
|
86
|
-
class AccountInfo(BaseModel):
|
87
|
-
api_key: bool
|
88
|
-
models: List[SingleModel]
|
89
|
-
user_id: str
|
90
|
-
username: str
|
91
|
-
updated: str
|
92
|
-
created: str
|
93
|
-
|
94
|
-
|
95
|
-
class ModelEvaluation(BaseModel):
|
96
|
-
benchmarks: Dict[str, Dict[str, Any]]
|
97
|
-
metrics: Dict[str, Any]
|
98
|
-
|
99
|
-
|
100
|
-
class ApiKeyGeneration(BaseModel):
|
101
|
-
api_key: str
|
102
|
-
|
103
|
-
|
104
|
-
class DataInfo(BaseModel):
|
105
|
-
data: Dict[str, Dict[str, Dict[str, List[str]]]]
|
106
|
-
coins: List[str]
|
107
|
-
feature_sizes: List[str]
|
108
|
-
targets: Dict[str, str]
|
109
|
-
versions: Dict[str, float]
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
"""
|
4
|
-
Klines Service API
|
5
|
-
|
6
|
-
API for retrieving OHLCV data, funding rates, and symbol information from Binance. ## WebSocket Support Connect to `/ws` to receive real-time OHLCV updates. Example subscription message: ```json { \"action\": \"subscribe\", \"market\": \"spot\", \"symbol\": \"BTCUSDT\", \"timeframe\": \"15m\" } ```
|
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
|
-
import unittest
|
16
|
-
|
17
|
-
from crypticorn.klines.client.models.base_response_health_check_response import BaseResponseHealthCheckResponse
|
18
|
-
|
19
|
-
class TestBaseResponseHealthCheckResponse(unittest.TestCase):
|
20
|
-
"""BaseResponseHealthCheckResponse unit test stubs"""
|
21
|
-
|
22
|
-
def setUp(self):
|
23
|
-
pass
|
24
|
-
|
25
|
-
def tearDown(self):
|
26
|
-
pass
|
27
|
-
|
28
|
-
def make_instance(self, include_optional) -> BaseResponseHealthCheckResponse:
|
29
|
-
"""Test BaseResponseHealthCheckResponse
|
30
|
-
include_optional is a boolean, when False only required
|
31
|
-
params are included, when True both required and
|
32
|
-
optional params are included """
|
33
|
-
# uncomment below to create an instance of `BaseResponseHealthCheckResponse`
|
34
|
-
"""
|
35
|
-
model = BaseResponseHealthCheckResponse()
|
36
|
-
if include_optional:
|
37
|
-
return BaseResponseHealthCheckResponse(
|
38
|
-
success = True,
|
39
|
-
message = '',
|
40
|
-
data = client.models.health_check_response.HealthCheckResponse(
|
41
|
-
status = 'ok',
|
42
|
-
version = '1.0.0', ),
|
43
|
-
timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f')
|
44
|
-
)
|
45
|
-
else:
|
46
|
-
return BaseResponseHealthCheckResponse(
|
47
|
-
)
|
48
|
-
"""
|
49
|
-
|
50
|
-
def testBaseResponseHealthCheckResponse(self):
|
51
|
-
"""Test BaseResponseHealthCheckResponse"""
|
52
|
-
# inst_req_only = self.make_instance(include_optional=False)
|
53
|
-
# inst_req_and_optional = self.make_instance(include_optional=True)
|
54
|
-
|
55
|
-
if __name__ == '__main__':
|
56
|
-
unittest.main()
|
@@ -1,59 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
"""
|
4
|
-
Klines Service API
|
5
|
-
|
6
|
-
API for retrieving OHLCV data, funding rates, and symbol information from Binance. ## WebSocket Support Connect to `/ws` to receive real-time OHLCV updates. Example subscription message: ```json { \"action\": \"subscribe\", \"market\": \"spot\", \"symbol\": \"BTCUSDT\", \"timeframe\": \"15m\" } ```
|
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
|
-
import unittest
|
16
|
-
|
17
|
-
from crypticorn.klines.client.models.base_response_list_funding_rate_response import BaseResponseListFundingRateResponse
|
18
|
-
|
19
|
-
class TestBaseResponseListFundingRateResponse(unittest.TestCase):
|
20
|
-
"""BaseResponseListFundingRateResponse unit test stubs"""
|
21
|
-
|
22
|
-
def setUp(self):
|
23
|
-
pass
|
24
|
-
|
25
|
-
def tearDown(self):
|
26
|
-
pass
|
27
|
-
|
28
|
-
def make_instance(self, include_optional) -> BaseResponseListFundingRateResponse:
|
29
|
-
"""Test BaseResponseListFundingRateResponse
|
30
|
-
include_optional is a boolean, when False only required
|
31
|
-
params are included, when True both required and
|
32
|
-
optional params are included """
|
33
|
-
# uncomment below to create an instance of `BaseResponseListFundingRateResponse`
|
34
|
-
"""
|
35
|
-
model = BaseResponseListFundingRateResponse()
|
36
|
-
if include_optional:
|
37
|
-
return BaseResponseListFundingRateResponse(
|
38
|
-
success = True,
|
39
|
-
message = '',
|
40
|
-
data = [
|
41
|
-
client.models.funding_rate_response.FundingRateResponse(
|
42
|
-
symbol = '',
|
43
|
-
timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
44
|
-
funding_rate = 1.337, )
|
45
|
-
],
|
46
|
-
timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f')
|
47
|
-
)
|
48
|
-
else:
|
49
|
-
return BaseResponseListFundingRateResponse(
|
50
|
-
)
|
51
|
-
"""
|
52
|
-
|
53
|
-
def testBaseResponseListFundingRateResponse(self):
|
54
|
-
"""Test BaseResponseListFundingRateResponse"""
|
55
|
-
# inst_req_only = self.make_instance(include_optional=False)
|
56
|
-
# inst_req_and_optional = self.make_instance(include_optional=True)
|
57
|
-
|
58
|
-
if __name__ == '__main__':
|
59
|
-
unittest.main()
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
"""
|
4
|
-
Klines Service API
|
5
|
-
|
6
|
-
API for retrieving OHLCV data, funding rates, and symbol information from Binance. ## WebSocket Support Connect to `/ws` to receive real-time OHLCV updates. Example subscription message: ```json { \"action\": \"subscribe\", \"market\": \"spot\", \"symbol\": \"BTCUSDT\", \"timeframe\": \"15m\" } ```
|
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
|
-
import unittest
|
16
|
-
|
17
|
-
from crypticorn.klines.client.models.base_response_list_str import BaseResponseListStr
|
18
|
-
|
19
|
-
class TestBaseResponseListStr(unittest.TestCase):
|
20
|
-
"""BaseResponseListStr unit test stubs"""
|
21
|
-
|
22
|
-
def setUp(self):
|
23
|
-
pass
|
24
|
-
|
25
|
-
def tearDown(self):
|
26
|
-
pass
|
27
|
-
|
28
|
-
def make_instance(self, include_optional) -> BaseResponseListStr:
|
29
|
-
"""Test BaseResponseListStr
|
30
|
-
include_optional is a boolean, when False only required
|
31
|
-
params are included, when True both required and
|
32
|
-
optional params are included """
|
33
|
-
# uncomment below to create an instance of `BaseResponseListStr`
|
34
|
-
"""
|
35
|
-
model = BaseResponseListStr()
|
36
|
-
if include_optional:
|
37
|
-
return BaseResponseListStr(
|
38
|
-
success = True,
|
39
|
-
message = '',
|
40
|
-
data = [
|
41
|
-
''
|
42
|
-
],
|
43
|
-
timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f')
|
44
|
-
)
|
45
|
-
else:
|
46
|
-
return BaseResponseListStr(
|
47
|
-
)
|
48
|
-
"""
|
49
|
-
|
50
|
-
def testBaseResponseListStr(self):
|
51
|
-
"""Test BaseResponseListStr"""
|
52
|
-
# inst_req_only = self.make_instance(include_optional=False)
|
53
|
-
# inst_req_and_optional = self.make_instance(include_optional=True)
|
54
|
-
|
55
|
-
if __name__ == '__main__':
|
56
|
-
unittest.main()
|
@@ -1,72 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
"""
|
4
|
-
Klines Service API
|
5
|
-
|
6
|
-
API for retrieving OHLCV data, funding rates, and symbol information from Binance. ## WebSocket Support Connect to `/ws` to receive real-time OHLCV updates. Example subscription message: ```json { \"action\": \"subscribe\", \"market\": \"spot\", \"symbol\": \"BTCUSDT\", \"timeframe\": \"15m\" } ```
|
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
|
-
import unittest
|
16
|
-
|
17
|
-
from crypticorn.klines.client.models.base_response_ohlcv_response import BaseResponseOHLCVResponse
|
18
|
-
|
19
|
-
class TestBaseResponseOHLCVResponse(unittest.TestCase):
|
20
|
-
"""BaseResponseOHLCVResponse unit test stubs"""
|
21
|
-
|
22
|
-
def setUp(self):
|
23
|
-
pass
|
24
|
-
|
25
|
-
def tearDown(self):
|
26
|
-
pass
|
27
|
-
|
28
|
-
def make_instance(self, include_optional) -> BaseResponseOHLCVResponse:
|
29
|
-
"""Test BaseResponseOHLCVResponse
|
30
|
-
include_optional is a boolean, when False only required
|
31
|
-
params are included, when True both required and
|
32
|
-
optional params are included """
|
33
|
-
# uncomment below to create an instance of `BaseResponseOHLCVResponse`
|
34
|
-
"""
|
35
|
-
model = BaseResponseOHLCVResponse()
|
36
|
-
if include_optional:
|
37
|
-
return BaseResponseOHLCVResponse(
|
38
|
-
success = True,
|
39
|
-
message = '',
|
40
|
-
data = client.models.ohlcv_response.OHLCVResponse(
|
41
|
-
timestamp = [
|
42
|
-
datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f')
|
43
|
-
],
|
44
|
-
open = [
|
45
|
-
1.337
|
46
|
-
],
|
47
|
-
high = [
|
48
|
-
1.337
|
49
|
-
],
|
50
|
-
low = [
|
51
|
-
1.337
|
52
|
-
],
|
53
|
-
close = [
|
54
|
-
1.337
|
55
|
-
],
|
56
|
-
volume = [
|
57
|
-
1.337
|
58
|
-
], ),
|
59
|
-
timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f')
|
60
|
-
)
|
61
|
-
else:
|
62
|
-
return BaseResponseOHLCVResponse(
|
63
|
-
)
|
64
|
-
"""
|
65
|
-
|
66
|
-
def testBaseResponseOHLCVResponse(self):
|
67
|
-
"""Test BaseResponseOHLCVResponse"""
|
68
|
-
# inst_req_only = self.make_instance(include_optional=False)
|
69
|
-
# inst_req_and_optional = self.make_instance(include_optional=True)
|
70
|
-
|
71
|
-
if __name__ == '__main__':
|
72
|
-
unittest.main()
|