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
@@ -1,95 +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.udf_config_response import UDFConfigResponse
|
18
|
-
|
19
|
-
class TestUDFConfigResponse(unittest.TestCase):
|
20
|
-
"""UDFConfigResponse 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) -> UDFConfigResponse:
|
29
|
-
"""Test UDFConfigResponse
|
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 `UDFConfigResponse`
|
34
|
-
"""
|
35
|
-
model = UDFConfigResponse()
|
36
|
-
if include_optional:
|
37
|
-
return UDFConfigResponse(
|
38
|
-
supported_resolutions = [
|
39
|
-
''
|
40
|
-
],
|
41
|
-
supports_group_request = True,
|
42
|
-
supports_marks = True,
|
43
|
-
supports_search = True,
|
44
|
-
supports_timescale_marks = True,
|
45
|
-
supports_time = True,
|
46
|
-
exchanges = [
|
47
|
-
client.models.exchange.Exchange(
|
48
|
-
value = '',
|
49
|
-
name = '',
|
50
|
-
desc = '', )
|
51
|
-
],
|
52
|
-
symbols_types = [
|
53
|
-
client.models.symbol_type.SymbolType(
|
54
|
-
name = '',
|
55
|
-
value = '', )
|
56
|
-
],
|
57
|
-
currency_codes = [
|
58
|
-
''
|
59
|
-
],
|
60
|
-
supported_markets = [
|
61
|
-
''
|
62
|
-
]
|
63
|
-
)
|
64
|
-
else:
|
65
|
-
return UDFConfigResponse(
|
66
|
-
supported_resolutions = [
|
67
|
-
''
|
68
|
-
],
|
69
|
-
exchanges = [
|
70
|
-
client.models.exchange.Exchange(
|
71
|
-
value = '',
|
72
|
-
name = '',
|
73
|
-
desc = '', )
|
74
|
-
],
|
75
|
-
symbols_types = [
|
76
|
-
client.models.symbol_type.SymbolType(
|
77
|
-
name = '',
|
78
|
-
value = '', )
|
79
|
-
],
|
80
|
-
currency_codes = [
|
81
|
-
''
|
82
|
-
],
|
83
|
-
supported_markets = [
|
84
|
-
''
|
85
|
-
],
|
86
|
-
)
|
87
|
-
"""
|
88
|
-
|
89
|
-
def testUDFConfigResponse(self):
|
90
|
-
"""Test UDFConfigResponse"""
|
91
|
-
# inst_req_only = self.make_instance(include_optional=False)
|
92
|
-
# inst_req_and_optional = self.make_instance(include_optional=True)
|
93
|
-
|
94
|
-
if __name__ == '__main__':
|
95
|
-
unittest.main()
|
@@ -1,60 +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.validation_error import ValidationError
|
18
|
-
|
19
|
-
class TestValidationError(unittest.TestCase):
|
20
|
-
"""ValidationError 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) -> ValidationError:
|
29
|
-
"""Test ValidationError
|
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 `ValidationError`
|
34
|
-
"""
|
35
|
-
model = ValidationError()
|
36
|
-
if include_optional:
|
37
|
-
return ValidationError(
|
38
|
-
loc = [
|
39
|
-
null
|
40
|
-
],
|
41
|
-
msg = '',
|
42
|
-
type = ''
|
43
|
-
)
|
44
|
-
else:
|
45
|
-
return ValidationError(
|
46
|
-
loc = [
|
47
|
-
null
|
48
|
-
],
|
49
|
-
msg = '',
|
50
|
-
type = '',
|
51
|
-
)
|
52
|
-
"""
|
53
|
-
|
54
|
-
def testValidationError(self):
|
55
|
-
"""Test ValidationError"""
|
56
|
-
# inst_req_only = self.make_instance(include_optional=False)
|
57
|
-
# inst_req_and_optional = self.make_instance(include_optional=True)
|
58
|
-
|
59
|
-
if __name__ == '__main__':
|
60
|
-
unittest.main()
|
@@ -1,50 +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.validation_error_loc_inner import ValidationErrorLocInner
|
18
|
-
|
19
|
-
class TestValidationErrorLocInner(unittest.TestCase):
|
20
|
-
"""ValidationErrorLocInner 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) -> ValidationErrorLocInner:
|
29
|
-
"""Test ValidationErrorLocInner
|
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 `ValidationErrorLocInner`
|
34
|
-
"""
|
35
|
-
model = ValidationErrorLocInner()
|
36
|
-
if include_optional:
|
37
|
-
return ValidationErrorLocInner(
|
38
|
-
)
|
39
|
-
else:
|
40
|
-
return ValidationErrorLocInner(
|
41
|
-
)
|
42
|
-
"""
|
43
|
-
|
44
|
-
def testValidationErrorLocInner(self):
|
45
|
-
"""Test ValidationErrorLocInner"""
|
46
|
-
# inst_req_only = self.make_instance(include_optional=False)
|
47
|
-
# inst_req_and_optional = self.make_instance(include_optional=True)
|
48
|
-
|
49
|
-
if __name__ == '__main__':
|
50
|
-
unittest.main()
|
@@ -1,19 +0,0 @@
|
|
1
|
-
Copyright (c) 2024 Crypticorn
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
-
of this software and associated documentation files (the "Software"), to deal
|
5
|
-
in the Software without restriction, including without limitation the rights
|
6
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
-
copies of the Software, and to permit persons to whom the Software is
|
8
|
-
furnished to do so, subject to the following conditions:
|
9
|
-
|
10
|
-
The above copyright notice and this permission notice shall be included in all
|
11
|
-
copies or substantial portions of the Software.
|
12
|
-
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19
|
-
SOFTWARE.
|
@@ -1,47 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: crypticorn
|
3
|
-
Version: 1.0.2rc3
|
4
|
-
Summary: Maximise Your Crypto Trading Profits with AI Predictions
|
5
|
-
Author-email: Crypticorn <timon@crypticorn.com>
|
6
|
-
License: MIT License
|
7
|
-
Project-URL: Homepage, https://crypticorn.com
|
8
|
-
Keywords: machine learning,data science,crypto,modelling
|
9
|
-
Classifier: Topic :: Scientific/Engineering
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
11
|
-
Classifier: Development Status :: 4 - Beta
|
12
|
-
Classifier: Intended Audience :: Science/Research
|
13
|
-
Classifier: Operating System :: OS Independent
|
14
|
-
Classifier: Programming Language :: Python :: 3
|
15
|
-
Classifier: Typing :: Typed
|
16
|
-
Requires-Python: >=3.10
|
17
|
-
Description-Content-Type: text/markdown
|
18
|
-
License-File: LICENSE.md
|
19
|
-
Provides-Extra: trade
|
20
|
-
Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "trade"
|
21
|
-
Requires-Dist: python_dateutil>=2.8.2; extra == "trade"
|
22
|
-
Requires-Dist: pydantic>=2; extra == "trade"
|
23
|
-
Requires-Dist: typing-extensions>=4.7.1; extra == "trade"
|
24
|
-
Provides-Extra: klines
|
25
|
-
Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "klines"
|
26
|
-
Requires-Dist: python_dateutil>=2.8.2; extra == "klines"
|
27
|
-
Requires-Dist: pydantic>=2; extra == "klines"
|
28
|
-
Requires-Dist: typing-extensions>=4.7.1; extra == "klines"
|
29
|
-
Provides-Extra: hive
|
30
|
-
Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "hive"
|
31
|
-
Requires-Dist: requests<3.0.0,>=2.32.0; extra == "hive"
|
32
|
-
Requires-Dist: tqdm<5.0.0,>=4.67.0; extra == "hive"
|
33
|
-
Requires-Dist: pydantic<3.0.0,>=2.0.0; extra == "hive"
|
34
|
-
Provides-Extra: dev
|
35
|
-
Requires-Dist: streamlit; extra == "dev"
|
36
|
-
Requires-Dist: httpx; extra == "dev"
|
37
|
-
Requires-Dist: build; extra == "dev"
|
38
|
-
Requires-Dist: black; extra == "dev"
|
39
|
-
Requires-Dist: twine; extra == "dev"
|
40
|
-
Requires-Dist: pyflakes; extra == "dev"
|
41
|
-
Provides-Extra: test
|
42
|
-
Requires-Dist: pytest>=7.2.1; extra == "test"
|
43
|
-
Requires-Dist: pytest-cov>=2.8.1; extra == "test"
|
44
|
-
Requires-Dist: tox>=3.9.0; extra == "test"
|
45
|
-
Requires-Dist: flake8>=4.0.0; extra == "test"
|
46
|
-
Requires-Dist: types-python-dateutil>=2.8.19.14; extra == "test"
|
47
|
-
Requires-Dist: mypy>=1.5; extra == "test"
|
@@ -1,128 +0,0 @@
|
|
1
|
-
crypticorn/__init__.py,sha256=tSmvwtqHKKAzbhWIc8Vt95hffRf8aEYX-8wWX6ZAPaM,147
|
2
|
-
crypticorn/client.py,sha256=LZ7oovE-9XV5iWbojMSEsGxOQ2EYI1qlg6zH4ZiRrGA,574
|
3
|
-
crypticorn/hive/__init__.py,sha256=1o5DghmXxXFp7cL-RCNg9_EqNAJih7ftEl5gz0Q19Qc,43
|
4
|
-
crypticorn/hive/main.py,sha256=ZdB0mS_x37pGF7r63Ek-RMYTfGkmdKPf2Sj18WGGJKw,4856
|
5
|
-
crypticorn/hive/requirements.txt,sha256=-eIbxeVF3c8WJ-QKUSHm-16kCHVp-dRP7isN25wbxqw,103
|
6
|
-
crypticorn/hive/utils.py,sha256=UOgdUomUDoX97OylN0_4fsu3mPsJHaUkpHqNmSp-QYE,3126
|
7
|
-
crypticorn/klines/__init__.py,sha256=9UUW013uZ5x4evz5zRUxbNid-6O9WAPPYvPZIHpAwms,87
|
8
|
-
crypticorn/klines/main.py,sha256=_c_lVK2tTdiAz36jkUvdNipEg-h-j3VsiSliBehdNmc,1590
|
9
|
-
crypticorn/klines/requirements.txt,sha256=n8RhXDEAbEojFhhRCctaYym4TMVetN5A7FZ-tjjgMRA,93
|
10
|
-
crypticorn/klines/client/__init__.py,sha256=yRh5QZclw9iV6gx5VXxkcQLDuIDgqf8n4-NHsfjX4Ps,3732
|
11
|
-
crypticorn/klines/client/api_client.py,sha256=daaHrXxIXfsBxpAf82DFktJRXb5V3Di23oMkQp8HO1E,27818
|
12
|
-
crypticorn/klines/client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
13
|
-
crypticorn/klines/client/configuration.py,sha256=T9KKthOv2xPmDV5b1STn1VdNLaJ-m-mkJsN8IhVVjDk,17910
|
14
|
-
crypticorn/klines/client/exceptions.py,sha256=HguTaQpkSMBj5KBOCTJ3SBg4USOfHhIcQ3b5XqnQ1Zg,6755
|
15
|
-
crypticorn/klines/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
-
crypticorn/klines/client/rest.py,sha256=43g9TDd2NnYnf2uWqepgwFlZrx2SwxDOewdNFGMhMaM,9706
|
17
|
-
crypticorn/klines/client/api/__init__.py,sha256=TJz6q5vOTkPnyAxKyldGojE6y5rPdDoMNIV2JHLbpbo,385
|
18
|
-
crypticorn/klines/client/api/funding_rates_api.py,sha256=2uvNa5iALWWI9YEPWjmRTW2FFyUU6MKeSNrsiv1kSy4,14717
|
19
|
-
crypticorn/klines/client/api/health_check_api.py,sha256=lmAwwxp9wyYM9GbSp31mh2hieBaPKrP26mKrG7_almw,10753
|
20
|
-
crypticorn/klines/client/api/ohlcv_data_api.py,sha256=T29hx3Q5jUCAQK36fk82pdVV55g4c6TyBpH2Dl1z9Dw,17121
|
21
|
-
crypticorn/klines/client/api/symbols_api.py,sha256=VBl-K6soMueXQvQvmsKXI9x22Z5U71pFblLT0-RV040,11967
|
22
|
-
crypticorn/klines/client/api/udf_api.py,sha256=zx6YssNqPz61P121Ri787GHwrGxdoVVwoqiqYh5uyJI,72370
|
23
|
-
crypticorn/klines/client/models/__init__.py,sha256=tG5LpvKiSFCXJeXZ6T_-PDZYyjuZIFWcSDMFXtlneXI,2761
|
24
|
-
crypticorn/klines/client/models/base_response_health_check_response.py,sha256=naRstiHVscc-bzNwKAmfsuTz1By-XhrO1NAlSpj_wvU,3954
|
25
|
-
crypticorn/klines/client/models/base_response_list_funding_rate_response.py,sha256=zlbjz8L-YVjVPlFWGRmJPbfsneLQdNRtqdiVWvj2Z3w,4152
|
26
|
-
crypticorn/klines/client/models/base_response_list_str.py,sha256=6iKQ4US1J3xtVL1F9lkhr0DMC_yx6WKQRPR2MK3n6uw,3595
|
27
|
-
crypticorn/klines/client/models/base_response_ohlcv_response.py,sha256=hXlBkl35iIkBH0gKd39x-eVFFpW017wVhhsZT497rWg,3905
|
28
|
-
crypticorn/klines/client/models/error_response.py,sha256=kpPqsuBsG70QijtjhNFLcDNqzjQ9pdO0Qxw-KrBIf44,3457
|
29
|
-
crypticorn/klines/client/models/exchange.py,sha256=OM8EyBnzeoMns0EhLb3cOZ0Sl5J8S0u0rjXNg8r1o24,2866
|
30
|
-
crypticorn/klines/client/models/funding_rate_response.py,sha256=27H2uzkiyKnBTPu_DZCnbco5hasyc6lJ0ruXYyQtVvI,3046
|
31
|
-
crypticorn/klines/client/models/health_check_response.py,sha256=QJRpoJjtyG_xGnCfCqVlgpzVzWAYz9_H9SDXQqahPSA,2998
|
32
|
-
crypticorn/klines/client/models/history_error_response.py,sha256=gFbHzKqa7zmrMuvhtMTlh7x7N0nPpdkjGDj0w4trKoQ,2912
|
33
|
-
crypticorn/klines/client/models/history_no_data_response.py,sha256=I11VDZDGBkqb-h-mekmv7GbbIemuiy9DgOkIBYINhO8,3434
|
34
|
-
crypticorn/klines/client/models/history_success_response.py,sha256=pgtZR3hMOri6bNebM7QDPaNewIlHsXH6gPfuP4u2Zo8,3326
|
35
|
-
crypticorn/klines/client/models/http_validation_error.py,sha256=ELlAbC8sbVCj5vbORmvwz2f0yPzOSOVGRX88Al9x8vY,3298
|
36
|
-
crypticorn/klines/client/models/market.py,sha256=B9SyGnzmUmIF7mipmmxMz3g3elXjKT0Eaj_2zF7lCwY,1013
|
37
|
-
crypticorn/klines/client/models/ohlcv_response.py,sha256=HwgJlV6DHgVecHmdFkCxYqQn6xqGAUjXSgSTeo1-Fto,3290
|
38
|
-
crypticorn/klines/client/models/resolution.py,sha256=cG2c9ci8ML4KoMyAhydIl3k8Xof4kqKotga6wV3wSxo,1080
|
39
|
-
crypticorn/klines/client/models/response_get_history_udf_history_get.py,sha256=LHHvYkX3yXjQbdqUpMVvqQ-zWJQyrZu4Z0LmaOrIxos,6408
|
40
|
-
crypticorn/klines/client/models/search_symbol_response.py,sha256=6ldl7w97r_vNTJ_-ioLNp5DVsgwhjG8hA5DOaq4bEmM,3185
|
41
|
-
crypticorn/klines/client/models/sort_direction.py,sha256=1jY_QIV3y2WDIGEH58OHzjbWN4pf_YTP93Mh756zU0g,1026
|
42
|
-
crypticorn/klines/client/models/symbol_group_response.py,sha256=DtlSkA7MkV6YTG-UO32__6k-Sy1ouQ5Cx6rOV5JUq7k,2817
|
43
|
-
crypticorn/klines/client/models/symbol_info_response.py,sha256=nR5UNos61yh8vC_GoBnqDPU-30AowSu6M5dbUv4GmMQ,4142
|
44
|
-
crypticorn/klines/client/models/symbol_type.py,sha256=w_3BW5_G4qAa7nREeKIvmVqUV_Jd6qkPpVM6sJ7CQQA,2809
|
45
|
-
crypticorn/klines/client/models/timeframe.py,sha256=hxcNrPTIoYimYBwuNG_KowG9xB4X914743AOvvZCojA,1079
|
46
|
-
crypticorn/klines/client/models/udf_config_response.py,sha256=YaeCHhH_VX6sJlklw4eS9MH6W8E_RTxBcsS70gbcSeM,5277
|
47
|
-
crypticorn/klines/client/models/validation_error.py,sha256=Jmxe-nLipKwGbKLiZRHwrT3yF2s-micZ5s7Z3pd6jbM,3390
|
48
|
-
crypticorn/klines/client/models/validation_error_loc_inner.py,sha256=4okdF8FqhyWXtD1zZFyngleCv3B11eAJdIDI03eFIOY,5169
|
49
|
-
crypticorn/klines/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
-
crypticorn/klines/test/test_base_response_health_check_response.py,sha256=wEGQH5X-GPG42l7FwwSc7P7m3vQkaRzMfQVXu_PpxU4,2181
|
51
|
-
crypticorn/klines/test/test_base_response_list_funding_rate_response.py,sha256=cY7q9y_5DSLmbJrLf7qPsc1cpuiGy8B2yfZXCW6vjIw,2398
|
52
|
-
crypticorn/klines/test/test_base_response_list_str.py,sha256=NHsfoW-I81AEFXICiTFgnMial9v75xYcghQjdOYkZnQ,1949
|
53
|
-
crypticorn/klines/test/test_base_response_ohlcv_response.py,sha256=dkl0ErxNlL4gX5Yx-t12nBz-ZidifvvNKepq5T719xY,2619
|
54
|
-
crypticorn/klines/test/test_error_response.py,sha256=jBR4ga9WKW7sMZD2RYYwlV6nTz5fVNZxhu_L0irVAYk,1932
|
55
|
-
crypticorn/klines/test/test_exchange.py,sha256=OjD2pyyMa7h80bRqjG8D2qEm0Hgv6J3B2LdyBKWtIdI,1739
|
56
|
-
crypticorn/klines/test/test_funding_rate_response.py,sha256=z26hWTlS9tNxyYZS5QQ5G2bPZ2wtqHE_XinkCDy8MFo,2055
|
57
|
-
crypticorn/klines/test/test_funding_rates_api.py,sha256=pbaZ21JtiB8vWeY4KZKTnD_LzxEWZb4lvGctonWCyLQ,1123
|
58
|
-
crypticorn/klines/test/test_health_check_api.py,sha256=wl6vC5MwRIfHviZT_VaNQNudA4ZueVZaZPbDBDBtTgw,1055
|
59
|
-
crypticorn/klines/test/test_health_check_response.py,sha256=u4IYyQqDYZh3ZwXhrGMgEUZn6is0hHv08dGFSXiGRbM,1775
|
60
|
-
crypticorn/klines/test/test_history_error_response.py,sha256=jLtpjock2qfW-S77EbXCluRhgBnkbQVIls1gliOpS5E,1808
|
61
|
-
crypticorn/klines/test/test_history_no_data_response.py,sha256=nyaUzdxRfmxEwt5aoYyclXI_zSZxWmsKnjMSolOpc3s,2188
|
62
|
-
crypticorn/klines/test/test_history_success_response.py,sha256=VuBVDVXd55berpitDapgl8PIG31I8puTOoCl3RHg6Rk,2617
|
63
|
-
crypticorn/klines/test/test_http_validation_error.py,sha256=R4-Y5AaGG3KOF186n807fwG6l4CpWRYFgh5oGrDt5fs,1996
|
64
|
-
crypticorn/klines/test/test_market.py,sha256=ECis_r2Mw7CH8zpWq1ryeWdzxD8wB824NbVpQcfUPZw,948
|
65
|
-
crypticorn/klines/test/test_ohlcv_data_api.py,sha256=7BydPyycLPeGS5p1F0cNcGjwD7QGv-ZGcqNaiRekgE8,1105
|
66
|
-
crypticorn/klines/test/test_ohlcv_response.py,sha256=rKJqRgIRF13fqtfPeTwE4Vx_DewZJTqX1eS0XY28j0M,2680
|
67
|
-
crypticorn/klines/test/test_resolution.py,sha256=kvhW2JJ6PB2zjW7S9Z4cm62JwdgLSXzPmOJrreCW0vo,976
|
68
|
-
crypticorn/klines/test/test_response_get_history_udf_history_get.py,sha256=6Y3amNSIIniMz9sbmMdlVyJzz59s4sSgFYzLkW6OCWU,2789
|
69
|
-
crypticorn/klines/test/test_search_symbol_response.py,sha256=cK6VC4NG5TQZjbn12w_q5yMudGIWToF8Z99PAcfjFTg,2085
|
70
|
-
crypticorn/klines/test/test_sort_direction.py,sha256=r7qpTz_IPLYjZT9o0TU9wt1CKy_tvC1VneF3AyIYOY0,998
|
71
|
-
crypticorn/klines/test/test_symbol_group_response.py,sha256=wI8CO6lzejXC6RgGGrGOl8edR5N6BELp1ZSZVfH4Rjs,1782
|
72
|
-
crypticorn/klines/test/test_symbol_info_response.py,sha256=5dPtp3BJi62uvnjsaEo9gSvJMYc1kIu8puItixpUcSY,2781
|
73
|
-
crypticorn/klines/test/test_symbol_type.py,sha256=ojRM2yhJa-94yfhDRu4dGTV0vIK61lT3vCGT3PwIjDM,1710
|
74
|
-
crypticorn/klines/test/test_symbols_api.py,sha256=4eJ6Z2ELOn-zGqt7pUtk-BEcgMvK57uot4NFtsU_RA8,1070
|
75
|
-
crypticorn/klines/test/test_timeframe.py,sha256=6XpneN7_eZtGgyzNEB2gjqKaoDgROUrC_AzChimB0ZU,969
|
76
|
-
crypticorn/klines/test/test_udf_api.py,sha256=GHb4-jTWPwnDn1O0PxRq58p-LRvt1qXCoBLxoKUYYlA,2031
|
77
|
-
crypticorn/klines/test/test_udf_config_response.py,sha256=WCMj8VVWE1tQgIuvRSbuFI1ixU8iQx2J105VjA2mzmE,3214
|
78
|
-
crypticorn/klines/test/test_validation_error.py,sha256=6zSVzD_LX5yIGKGZJgsH74tsXQsV6DhJIpXyqPV-fow,1910
|
79
|
-
crypticorn/klines/test/test_validation_error_loc_inner.py,sha256=D4dHw64J4-bTmMd5K-JuwKaKzHfe8bJvHdAcAfX8nsA,1759
|
80
|
-
crypticorn/trade/__init__.py,sha256=QzScH9n-ly3QSaBSpPP7EqYwhdzDqYCZJs0-AhEhrsY,84
|
81
|
-
crypticorn/trade/main.py,sha256=mHAYbEGp-SEP56xsmHIaTQnTWVPtWux42AzGuWjwCL8,1220
|
82
|
-
crypticorn/trade/requirements.txt,sha256=n8RhXDEAbEojFhhRCctaYym4TMVetN5A7FZ-tjjgMRA,93
|
83
|
-
crypticorn/trade/client/__init__.py,sha256=Fq_jmX_KcwTcUKG5SLky3UgeiAuJNwJLkomDXFc_APw,3241
|
84
|
-
crypticorn/trade/client/api_client.py,sha256=QFMMs_EPtc0_kS2uIhGPfBVbabN0nI7hyJ98FfeVa7s,27528
|
85
|
-
crypticorn/trade/client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
86
|
-
crypticorn/trade/client/configuration.py,sha256=i6US_tKRg9asIQwARr9mXtJyhATuvSu5vumscOTRqCg,17933
|
87
|
-
crypticorn/trade/client/exceptions.py,sha256=upZXBQh1bx93N8JIPJh89j67pArS4oxcCmZ_cfdK2XU,6471
|
88
|
-
crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
|
-
crypticorn/trade/client/rest.py,sha256=88DaQixyRu5OiYCPrSmUfZg5CK6-Qj5xv8FNbw3yzyM,9421
|
90
|
-
crypticorn/trade/client/api/__init__.py,sha256=s0PaWLA2MkjhypdxW0p_cb5Oxr3Bsds-3-x2HMA9Gtk,669
|
91
|
-
crypticorn/trade/client/api/api_keys_api.py,sha256=rA_FN5e1rmcaYjQC-ntk8A9gJntyai1oFLCOl7Obd3U,53921
|
92
|
-
crypticorn/trade/client/api/bots_api.py,sha256=X2qppDqJ_XRcUSlIFJpWoRAc6c3JodC_feWeVMJl1O4,44115
|
93
|
-
crypticorn/trade/client/api/exchanges_api.py,sha256=bN-WrYOjlCs4mTChkKlmM45WptJkkkh7Ny3zoQ4G81A,10898
|
94
|
-
crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=OQBCOZjsywFHpIS25gl6_FC5zTE_PORnMAReOrQANuQ,53610
|
95
|
-
crypticorn/trade/client/api/notifications_api.py,sha256=zlgW01-iAM_cdjGYuKThjV3BC5JV4LlKXhVUjuUxdug,65207
|
96
|
-
crypticorn/trade/client/api/orders_api.py,sha256=O7CUT0yARw0aE2tEumXp0b3zoDXhWEs_yswQHTtjzhk,11841
|
97
|
-
crypticorn/trade/client/api/status_api.py,sha256=iQ3GeojJ1FMEmKihgDkdIxJAbttVO7m8HAax1zcg1ZE,10020
|
98
|
-
crypticorn/trade/client/api/strategies_api.py,sha256=XQiSOpDSgMC0_gi_KtZvFx0Lpj_8ejoaKL3Kjq3_I1I,11910
|
99
|
-
crypticorn/trade/client/api/trading_actions_api.py,sha256=B9div3_yrd0JjzCG3eFnxteIS4aSd-ZeRcWJ5nxNbas,33969
|
100
|
-
crypticorn/trade/client/models/__init__.py,sha256=Sg6eh8BbEwF2FG7FphlBkCuWV93UcZjgZ5B0lIGF7B4,1995
|
101
|
-
crypticorn/trade/client/models/action_model.py,sha256=nHfTRpdZk2c5P9apDzjppgRszP2DtDq_589NgYeItIo,9224
|
102
|
-
crypticorn/trade/client/models/api_error_identifier.py,sha256=LKcH6vRnpPxIWnzbhICAsx4D5uN_OsOf3BzplmYKhOE,3402
|
103
|
-
crypticorn/trade/client/models/api_key_model.py,sha256=dpJPvuSqr7DoO_bapBH7gpO7EW3WlesIANy1grIJ6dI,4911
|
104
|
-
crypticorn/trade/client/models/bot_model.py,sha256=ME32DpruVjZauo9MfhaP0UEMeULJ37Fz7t9qmZRWsSk,4726
|
105
|
-
crypticorn/trade/client/models/exchange.py,sha256=UdNrCO_0L8ZFmuVsBgtEjV71UpRdi2I0XW-YeDyb7zw,746
|
106
|
-
crypticorn/trade/client/models/execution_ids.py,sha256=dJt4Qjg0B1TdeL3fI0_ZNGMZgYX_KBwIbzwxSWgSCao,2877
|
107
|
-
crypticorn/trade/client/models/futures_balance.py,sha256=VJ2Cdm5qdvzQwaF0sR2tIoWhb5MDQAvWOOVl_lyijNc,4012
|
108
|
-
crypticorn/trade/client/models/futures_trading_action.py,sha256=A3JO5ifaxm-xBRlMosMFAoOe-KkM1Bx6FDdGFDVQUhs,8836
|
109
|
-
crypticorn/trade/client/models/http_validation_error.py,sha256=3SRsszhn2w2qVZO9FhNR2M0ozNUGeWvPF-ywzE5ehCg,3013
|
110
|
-
crypticorn/trade/client/models/margin_mode.py,sha256=u96KDpDFRM0MIs4xbXzDOT-wn6uO73wBGZthoTP1MuE,765
|
111
|
-
crypticorn/trade/client/models/market_type.py,sha256=ppUr4WJnAiuZEZkD1WnM-oKi4vKx0ykXweAXAyfPTCk,745
|
112
|
-
crypticorn/trade/client/models/notification_model.py,sha256=rUikEYx7hbFzpo0GQY47wHts9C0Jc_7UfDoJ3IUAoWk,4358
|
113
|
-
crypticorn/trade/client/models/notification_type.py,sha256=Cq7GDV6BwBxttohb7NMdC0nWx1-Igdq4pUDYY8CCiu0,803
|
114
|
-
crypticorn/trade/client/models/order_model.py,sha256=bzTTUyQMGxNC0DqT2epDHOZbAwsLU3Q6o0j5uajf_5s,11303
|
115
|
-
crypticorn/trade/client/models/order_status.py,sha256=V13eUjWXoZn5TD0Eyl2Q7XL9Ih6zkOUyCPOhNQ7UyTk,840
|
116
|
-
crypticorn/trade/client/models/post_futures_action.py,sha256=AdD6sQxuNUSglNUwXosTYcBdtYYqIrIvHtYcyEm3nvA,3003
|
117
|
-
crypticorn/trade/client/models/strategy_exchange_info.py,sha256=sNATmx0U6T6weg-T3vYsr1JaqgcG-36qdfuBKqpWY9Q,2834
|
118
|
-
crypticorn/trade/client/models/strategy_model.py,sha256=2C2ToLDm2mMYP9Gk2lzGaULoBt0tVsl5AjkaPplIvWU,4834
|
119
|
-
crypticorn/trade/client/models/tpsl.py,sha256=6Ue5uRCkMm1dUSr7xT4Y9308ZsjoZwIQ74koZGBAF6c,4180
|
120
|
-
crypticorn/trade/client/models/trading_action_type.py,sha256=eH7sFKbFojxqMdtmqq_FOrVVZ6jEOwK-uRPBBWQdeUw,845
|
121
|
-
crypticorn/trade/client/models/update_notification.py,sha256=7Aw4z98ANT6D5octUmz5UXe6EC7_Mk8ax679bjjCkXk,2988
|
122
|
-
crypticorn/trade/client/models/validation_error.py,sha256=hMZJHRMZuiByzCvD7zyR5HVzlzJSnLKcMnybUalQvgI,3105
|
123
|
-
crypticorn/trade/client/models/validation_error_loc_inner.py,sha256=wHiW_qKw46E2pUdOnesgpdnuqpTX9IQTaEOVDgph5_E,4885
|
124
|
-
crypticorn-1.0.2rc3.dist-info/LICENSE.md,sha256=4QRTsg__j9b8qUNkL1jcDlrOMViv5B7wJF3p7khs-M0,1053
|
125
|
-
crypticorn-1.0.2rc3.dist-info/METADATA,sha256=cbWdUgl9RuF3UcefnAWzO2L_zT5pCDZ56fL4fI3bdjE,1973
|
126
|
-
crypticorn-1.0.2rc3.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
127
|
-
crypticorn-1.0.2rc3.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
|
128
|
-
crypticorn-1.0.2rc3.dist-info/RECORD,,
|
File without changes
|
File without changes
|