crypticorn 1.0.1__py3-none-any.whl → 1.0.2rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (162) hide show
  1. crypticorn/__init__.py +3 -3
  2. crypticorn/client.py +722 -0
  3. crypticorn/{api.py → hive/main.py} +6 -6
  4. crypticorn/hive/requirements.txt +4 -0
  5. crypticorn/{utils.py → hive/utils.py} +2 -2
  6. crypticorn/klines/client/__init__.py +62 -0
  7. crypticorn/klines/client/api/__init__.py +9 -0
  8. crypticorn/klines/client/api/funding_rates_api.py +362 -0
  9. crypticorn/klines/client/api/health_check_api.py +281 -0
  10. crypticorn/klines/client/api/ohlcv_data_api.py +409 -0
  11. crypticorn/klines/client/api/symbols_api.py +308 -0
  12. crypticorn/klines/client/api/udf_api.py +1929 -0
  13. crypticorn/klines/client/api_client.py +797 -0
  14. crypticorn/klines/client/api_response.py +21 -0
  15. crypticorn/klines/client/configuration.py +565 -0
  16. crypticorn/klines/client/exceptions.py +216 -0
  17. crypticorn/klines/client/models/__init__.py +41 -0
  18. crypticorn/klines/client/models/base_response_health_check_response.py +108 -0
  19. crypticorn/klines/client/models/base_response_list_funding_rate_response.py +112 -0
  20. crypticorn/klines/client/models/base_response_list_str.py +104 -0
  21. crypticorn/klines/client/models/base_response_ohlcv_response.py +108 -0
  22. crypticorn/klines/client/models/error_response.py +101 -0
  23. crypticorn/{models/deleted.py → klines/client/models/exchange.py} +15 -11
  24. crypticorn/klines/client/models/funding_rate_response.py +92 -0
  25. crypticorn/klines/client/models/health_check_response.py +89 -0
  26. crypticorn/{models/create_api_key_response.py → klines/client/models/history_error_response.py} +12 -22
  27. crypticorn/klines/client/models/history_no_data_response.py +99 -0
  28. crypticorn/klines/client/models/history_success_response.py +99 -0
  29. crypticorn/klines/client/models/http_validation_error.py +95 -0
  30. crypticorn/klines/client/models/market.py +37 -0
  31. crypticorn/klines/client/models/ohlcv_response.py +98 -0
  32. crypticorn/klines/client/models/resolution.py +40 -0
  33. crypticorn/klines/client/models/response_get_history_udf_history_get.py +149 -0
  34. crypticorn/klines/client/models/search_symbol_response.py +97 -0
  35. crypticorn/klines/client/models/sort_direction.py +37 -0
  36. crypticorn/{models/futures_balance_error.py → klines/client/models/symbol_group_response.py} +12 -14
  37. crypticorn/klines/client/models/symbol_info_response.py +115 -0
  38. crypticorn/{models/id.py → klines/client/models/symbol_type.py} +13 -11
  39. crypticorn/klines/client/models/timeframe.py +40 -0
  40. crypticorn/klines/client/models/udf_config_response.py +121 -0
  41. crypticorn/klines/client/models/validation_error.py +99 -0
  42. crypticorn/{models/get_futures_balance200_response_inner.py → klines/client/models/validation_error_loc_inner.py} +39 -35
  43. crypticorn/klines/client/py.typed +0 -0
  44. crypticorn/klines/client/rest.py +257 -0
  45. crypticorn/klines/main.py +42 -0
  46. crypticorn/klines/requirements.txt +4 -0
  47. crypticorn/klines/test/__init__.py +0 -0
  48. crypticorn/klines/test/test_base_response_health_check_response.py +56 -0
  49. crypticorn/klines/test/test_base_response_list_funding_rate_response.py +59 -0
  50. crypticorn/klines/test/test_base_response_list_str.py +56 -0
  51. crypticorn/klines/test/test_base_response_ohlcv_response.py +72 -0
  52. crypticorn/klines/test/test_error_response.py +57 -0
  53. crypticorn/klines/test/test_exchange.py +56 -0
  54. crypticorn/klines/test/test_funding_rate_response.py +56 -0
  55. crypticorn/klines/test/test_funding_rates_api.py +38 -0
  56. crypticorn/klines/test/test_health_check_api.py +38 -0
  57. crypticorn/klines/test/test_health_check_response.py +52 -0
  58. crypticorn/klines/test/test_history_error_response.py +53 -0
  59. crypticorn/klines/test/test_history_no_data_response.py +69 -0
  60. crypticorn/klines/test/test_history_success_response.py +87 -0
  61. crypticorn/klines/test/test_http_validation_error.py +58 -0
  62. crypticorn/klines/test/test_market.py +33 -0
  63. crypticorn/klines/test/test_ohlcv_data_api.py +38 -0
  64. crypticorn/klines/test/test_ohlcv_response.py +86 -0
  65. crypticorn/klines/test/test_resolution.py +33 -0
  66. crypticorn/klines/test/test_response_get_history_udf_history_get.py +89 -0
  67. crypticorn/klines/test/test_search_symbol_response.py +62 -0
  68. crypticorn/klines/test/test_sort_direction.py +33 -0
  69. crypticorn/klines/test/test_symbol_group_response.py +53 -0
  70. crypticorn/klines/test/test_symbol_info_response.py +84 -0
  71. crypticorn/klines/test/test_symbol_type.py +54 -0
  72. crypticorn/klines/test/test_symbols_api.py +38 -0
  73. crypticorn/klines/test/test_timeframe.py +33 -0
  74. crypticorn/klines/test/test_udf_api.py +80 -0
  75. crypticorn/klines/test/test_udf_config_response.py +95 -0
  76. crypticorn/klines/test/test_validation_error.py +60 -0
  77. crypticorn/klines/test/test_validation_error_loc_inner.py +50 -0
  78. crypticorn/trade/client/__init__.py +63 -0
  79. crypticorn/trade/client/api/__init__.py +13 -0
  80. crypticorn/trade/client/api/api_keys_api.py +1468 -0
  81. crypticorn/trade/client/api/bots_api.py +1211 -0
  82. crypticorn/trade/client/api/exchanges_api.py +297 -0
  83. crypticorn/trade/client/api/futures_trading_panel_api.py +1463 -0
  84. crypticorn/trade/client/api/notifications_api.py +1767 -0
  85. crypticorn/trade/client/api/orders_api.py +331 -0
  86. crypticorn/trade/client/api/status_api.py +278 -0
  87. crypticorn/trade/client/api/strategies_api.py +331 -0
  88. crypticorn/trade/client/api/trading_actions_api.py +898 -0
  89. crypticorn/trade/client/api_client.py +797 -0
  90. crypticorn/trade/client/api_response.py +21 -0
  91. crypticorn/trade/client/configuration.py +574 -0
  92. crypticorn/trade/client/exceptions.py +216 -0
  93. crypticorn/trade/client/models/__init__.py +38 -0
  94. crypticorn/{models → trade/client/models}/action_model.py +17 -20
  95. crypticorn/{models → trade/client/models}/api_error_identifier.py +3 -1
  96. crypticorn/{models → trade/client/models}/api_key_model.py +5 -8
  97. crypticorn/{models → trade/client/models}/bot_model.py +15 -11
  98. crypticorn/{models → trade/client/models}/futures_trading_action.py +12 -12
  99. crypticorn/{models → trade/client/models}/http_validation_error.py +1 -1
  100. crypticorn/{models → trade/client/models}/notification_model.py +8 -6
  101. crypticorn/{models → trade/client/models}/order_model.py +12 -15
  102. crypticorn/{models → trade/client/models}/post_futures_action.py +1 -1
  103. crypticorn/{models → trade/client/models}/strategy_exchange_info.py +1 -1
  104. crypticorn/{models → trade/client/models}/strategy_model.py +6 -2
  105. crypticorn/{models → trade/client/models}/validation_error.py +1 -1
  106. crypticorn/trade/client/py.typed +0 -0
  107. crypticorn/trade/client/rest.py +257 -0
  108. crypticorn/trade/main.py +38 -0
  109. crypticorn/trade/requirements.txt +4 -0
  110. crypticorn/trade/test/__init__.py +0 -0
  111. crypticorn/trade/test/test_action_model.py +87 -0
  112. crypticorn/trade/test/test_api_error_identifier.py +33 -0
  113. crypticorn/trade/test/test_api_key_model.py +61 -0
  114. crypticorn/trade/test/test_api_keys_api.py +66 -0
  115. crypticorn/trade/test/test_bot_model.py +64 -0
  116. crypticorn/trade/test/test_bots_api.py +59 -0
  117. crypticorn/trade/test/test_exchange.py +33 -0
  118. crypticorn/trade/test/test_exchanges_api.py +38 -0
  119. crypticorn/trade/test/test_execution_ids.py +68 -0
  120. crypticorn/trade/test/test_futures_balance.py +62 -0
  121. crypticorn/trade/test/test_futures_trading_action.py +86 -0
  122. crypticorn/trade/test/test_futures_trading_panel_api.py +66 -0
  123. crypticorn/trade/test/test_http_validation_error.py +58 -0
  124. crypticorn/trade/test/test_margin_mode.py +33 -0
  125. crypticorn/trade/test/test_market_type.py +33 -0
  126. crypticorn/trade/test/test_notification_model.py +59 -0
  127. crypticorn/trade/test/test_notification_type.py +33 -0
  128. crypticorn/trade/test/test_notifications_api.py +73 -0
  129. crypticorn/trade/test/test_order_model.py +75 -0
  130. crypticorn/trade/test/test_order_status.py +33 -0
  131. crypticorn/trade/test/test_orders_api.py +38 -0
  132. crypticorn/trade/test/test_post_futures_action.py +72 -0
  133. crypticorn/trade/test/test_status_api.py +38 -0
  134. crypticorn/trade/test/test_strategies_api.py +38 -0
  135. crypticorn/trade/test/test_strategy_exchange_info.py +54 -0
  136. crypticorn/trade/test/test_strategy_model.py +73 -0
  137. crypticorn/trade/test/test_tpsl.py +56 -0
  138. crypticorn/trade/test/test_trading_action_type.py +33 -0
  139. crypticorn/trade/test/test_trading_actions_api.py +52 -0
  140. crypticorn/trade/test/test_update_notification.py +54 -0
  141. crypticorn/trade/test/test_validation_error.py +60 -0
  142. crypticorn/trade/test/test_validation_error_loc_inner.py +50 -0
  143. crypticorn-1.0.2rc1.dist-info/METADATA +47 -0
  144. crypticorn-1.0.2rc1.dist-info/RECORD +158 -0
  145. {crypticorn-1.0.1.dist-info → crypticorn-1.0.2rc1.dist-info}/WHEEL +1 -1
  146. crypticorn/models/__init__.py +0 -31
  147. crypticorn/models/modified.py +0 -87
  148. crypticorn-1.0.1.dist-info/METADATA +0 -40
  149. crypticorn-1.0.1.dist-info/RECORD +0 -38
  150. /crypticorn/{models → trade/client/models}/exchange.py +0 -0
  151. /crypticorn/{models → trade/client/models}/execution_ids.py +0 -0
  152. /crypticorn/{models → trade/client/models}/futures_balance.py +0 -0
  153. /crypticorn/{models → trade/client/models}/margin_mode.py +0 -0
  154. /crypticorn/{models → trade/client/models}/market_type.py +0 -0
  155. /crypticorn/{models → trade/client/models}/notification_type.py +0 -0
  156. /crypticorn/{models → trade/client/models}/order_status.py +0 -0
  157. /crypticorn/{models → trade/client/models}/tpsl.py +0 -0
  158. /crypticorn/{models → trade/client/models}/trading_action_type.py +0 -0
  159. /crypticorn/{models → trade/client/models}/update_notification.py +0 -0
  160. /crypticorn/{models → trade/client/models}/validation_error_loc_inner.py +0 -0
  161. {crypticorn-1.0.1.dist-info → crypticorn-1.0.2rc1.dist-info}/LICENSE.md +0 -0
  162. {crypticorn-1.0.1.dist-info → crypticorn-1.0.2rc1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,52 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.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.trade.client.api.trading_actions_api import TradingActionsApi
18
+
19
+
20
+ class TestTradingActionsApi(unittest.TestCase):
21
+ """TradingActionsApi unit test stubs"""
22
+
23
+ def setUp(self) -> None:
24
+ self.api = TradingActionsApi()
25
+
26
+ def tearDown(self) -> None:
27
+ pass
28
+
29
+ def test_get_actions(self) -> None:
30
+ """Test case for get_actions
31
+
32
+ Get Actions
33
+ """
34
+ pass
35
+
36
+ def test_post_futures_action(self) -> None:
37
+ """Test case for post_futures_action
38
+
39
+ Post Futures Action
40
+ """
41
+ pass
42
+
43
+ def test_post_spot_action(self) -> None:
44
+ """Test case for post_spot_action
45
+
46
+ Post Spot Action
47
+ """
48
+ pass
49
+
50
+
51
+ if __name__ == '__main__':
52
+ unittest.main()
@@ -0,0 +1,54 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.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.trade.client.models.update_notification import UpdateNotification
18
+
19
+ class TestUpdateNotification(unittest.TestCase):
20
+ """UpdateNotification 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) -> UpdateNotification:
29
+ """Test UpdateNotification
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 `UpdateNotification`
34
+ """
35
+ model = UpdateNotification()
36
+ if include_optional:
37
+ return UpdateNotification(
38
+ id = '',
39
+ viewed = True,
40
+ sent = True
41
+ )
42
+ else:
43
+ return UpdateNotification(
44
+ id = '',
45
+ )
46
+ """
47
+
48
+ def testUpdateNotification(self):
49
+ """Test UpdateNotification"""
50
+ # inst_req_only = self.make_instance(include_optional=False)
51
+ # inst_req_and_optional = self.make_instance(include_optional=True)
52
+
53
+ if __name__ == '__main__':
54
+ unittest.main()
@@ -0,0 +1,60 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.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.trade.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()
@@ -0,0 +1,50 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.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.trade.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()
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.2
2
+ Name: crypticorn
3
+ Version: 1.0.2rc1
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: dev
20
+ Requires-Dist: streamlit; extra == "dev"
21
+ Requires-Dist: httpx; extra == "dev"
22
+ Requires-Dist: build; extra == "dev"
23
+ Requires-Dist: black; extra == "dev"
24
+ Requires-Dist: twine; extra == "dev"
25
+ Requires-Dist: pyflakes; extra == "dev"
26
+ Provides-Extra: test
27
+ Requires-Dist: pytest>=7.2.1; extra == "test"
28
+ Requires-Dist: pytest-cov>=2.8.1; extra == "test"
29
+ Requires-Dist: tox>=3.9.0; extra == "test"
30
+ Requires-Dist: flake8>=4.0.0; extra == "test"
31
+ Requires-Dist: types-python-dateutil>=2.8.19.14; extra == "test"
32
+ Requires-Dist: mypy>=1.5; extra == "test"
33
+ Provides-Extra: klines
34
+ Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "klines"
35
+ Requires-Dist: python_dateutil>=2.8.2; extra == "klines"
36
+ Requires-Dist: pydantic>=2; extra == "klines"
37
+ Requires-Dist: typing-extensions>=4.7.1; extra == "klines"
38
+ Provides-Extra: hive
39
+ Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "hive"
40
+ Requires-Dist: requests<3.0.0,>=2.32.0; extra == "hive"
41
+ Requires-Dist: tqdm<5.0.0,>=4.67.0; extra == "hive"
42
+ Requires-Dist: pydantic<3.0.0,>=2.0.0; extra == "hive"
43
+ Provides-Extra: trade
44
+ Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "trade"
45
+ Requires-Dist: python_dateutil>=2.8.2; extra == "trade"
46
+ Requires-Dist: pydantic>=2; extra == "trade"
47
+ Requires-Dist: typing-extensions>=4.7.1; extra == "trade"
@@ -0,0 +1,158 @@
1
+ crypticorn/__init__.py,sha256=tSmvwtqHKKAzbhWIc8Vt95hffRf8aEYX-8wWX6ZAPaM,147
2
+ crypticorn/client.py,sha256=V2i23nm-6jKgXt0uFN-I1io8bna_ZMqtGAqcHyIlPx8,29230
3
+ crypticorn/hive/main.py,sha256=ZdB0mS_x37pGF7r63Ek-RMYTfGkmdKPf2Sj18WGGJKw,4856
4
+ crypticorn/hive/requirements.txt,sha256=-eIbxeVF3c8WJ-QKUSHm-16kCHVp-dRP7isN25wbxqw,103
5
+ crypticorn/hive/utils.py,sha256=UOgdUomUDoX97OylN0_4fsu3mPsJHaUkpHqNmSp-QYE,3126
6
+ crypticorn/klines/main.py,sha256=vuKU4JUKGKs3P1YRWqCcn3Qmru8jvxwYJiQKbNe27lw,1597
7
+ crypticorn/klines/requirements.txt,sha256=n8RhXDEAbEojFhhRCctaYym4TMVetN5A7FZ-tjjgMRA,93
8
+ crypticorn/klines/client/__init__.py,sha256=yRh5QZclw9iV6gx5VXxkcQLDuIDgqf8n4-NHsfjX4Ps,3732
9
+ crypticorn/klines/client/api_client.py,sha256=daaHrXxIXfsBxpAf82DFktJRXb5V3Di23oMkQp8HO1E,27818
10
+ crypticorn/klines/client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
11
+ crypticorn/klines/client/configuration.py,sha256=T9KKthOv2xPmDV5b1STn1VdNLaJ-m-mkJsN8IhVVjDk,17910
12
+ crypticorn/klines/client/exceptions.py,sha256=HguTaQpkSMBj5KBOCTJ3SBg4USOfHhIcQ3b5XqnQ1Zg,6755
13
+ crypticorn/klines/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ crypticorn/klines/client/rest.py,sha256=43g9TDd2NnYnf2uWqepgwFlZrx2SwxDOewdNFGMhMaM,9706
15
+ crypticorn/klines/client/api/__init__.py,sha256=TJz6q5vOTkPnyAxKyldGojE6y5rPdDoMNIV2JHLbpbo,385
16
+ crypticorn/klines/client/api/funding_rates_api.py,sha256=2uvNa5iALWWI9YEPWjmRTW2FFyUU6MKeSNrsiv1kSy4,14717
17
+ crypticorn/klines/client/api/health_check_api.py,sha256=lmAwwxp9wyYM9GbSp31mh2hieBaPKrP26mKrG7_almw,10753
18
+ crypticorn/klines/client/api/ohlcv_data_api.py,sha256=T29hx3Q5jUCAQK36fk82pdVV55g4c6TyBpH2Dl1z9Dw,17121
19
+ crypticorn/klines/client/api/symbols_api.py,sha256=VBl-K6soMueXQvQvmsKXI9x22Z5U71pFblLT0-RV040,11967
20
+ crypticorn/klines/client/api/udf_api.py,sha256=zx6YssNqPz61P121Ri787GHwrGxdoVVwoqiqYh5uyJI,72370
21
+ crypticorn/klines/client/models/__init__.py,sha256=tG5LpvKiSFCXJeXZ6T_-PDZYyjuZIFWcSDMFXtlneXI,2761
22
+ crypticorn/klines/client/models/base_response_health_check_response.py,sha256=naRstiHVscc-bzNwKAmfsuTz1By-XhrO1NAlSpj_wvU,3954
23
+ crypticorn/klines/client/models/base_response_list_funding_rate_response.py,sha256=zlbjz8L-YVjVPlFWGRmJPbfsneLQdNRtqdiVWvj2Z3w,4152
24
+ crypticorn/klines/client/models/base_response_list_str.py,sha256=6iKQ4US1J3xtVL1F9lkhr0DMC_yx6WKQRPR2MK3n6uw,3595
25
+ crypticorn/klines/client/models/base_response_ohlcv_response.py,sha256=hXlBkl35iIkBH0gKd39x-eVFFpW017wVhhsZT497rWg,3905
26
+ crypticorn/klines/client/models/error_response.py,sha256=kpPqsuBsG70QijtjhNFLcDNqzjQ9pdO0Qxw-KrBIf44,3457
27
+ crypticorn/klines/client/models/exchange.py,sha256=OM8EyBnzeoMns0EhLb3cOZ0Sl5J8S0u0rjXNg8r1o24,2866
28
+ crypticorn/klines/client/models/funding_rate_response.py,sha256=27H2uzkiyKnBTPu_DZCnbco5hasyc6lJ0ruXYyQtVvI,3046
29
+ crypticorn/klines/client/models/health_check_response.py,sha256=QJRpoJjtyG_xGnCfCqVlgpzVzWAYz9_H9SDXQqahPSA,2998
30
+ crypticorn/klines/client/models/history_error_response.py,sha256=gFbHzKqa7zmrMuvhtMTlh7x7N0nPpdkjGDj0w4trKoQ,2912
31
+ crypticorn/klines/client/models/history_no_data_response.py,sha256=I11VDZDGBkqb-h-mekmv7GbbIemuiy9DgOkIBYINhO8,3434
32
+ crypticorn/klines/client/models/history_success_response.py,sha256=pgtZR3hMOri6bNebM7QDPaNewIlHsXH6gPfuP4u2Zo8,3326
33
+ crypticorn/klines/client/models/http_validation_error.py,sha256=ELlAbC8sbVCj5vbORmvwz2f0yPzOSOVGRX88Al9x8vY,3298
34
+ crypticorn/klines/client/models/market.py,sha256=B9SyGnzmUmIF7mipmmxMz3g3elXjKT0Eaj_2zF7lCwY,1013
35
+ crypticorn/klines/client/models/ohlcv_response.py,sha256=HwgJlV6DHgVecHmdFkCxYqQn6xqGAUjXSgSTeo1-Fto,3290
36
+ crypticorn/klines/client/models/resolution.py,sha256=cG2c9ci8ML4KoMyAhydIl3k8Xof4kqKotga6wV3wSxo,1080
37
+ crypticorn/klines/client/models/response_get_history_udf_history_get.py,sha256=LHHvYkX3yXjQbdqUpMVvqQ-zWJQyrZu4Z0LmaOrIxos,6408
38
+ crypticorn/klines/client/models/search_symbol_response.py,sha256=6ldl7w97r_vNTJ_-ioLNp5DVsgwhjG8hA5DOaq4bEmM,3185
39
+ crypticorn/klines/client/models/sort_direction.py,sha256=1jY_QIV3y2WDIGEH58OHzjbWN4pf_YTP93Mh756zU0g,1026
40
+ crypticorn/klines/client/models/symbol_group_response.py,sha256=DtlSkA7MkV6YTG-UO32__6k-Sy1ouQ5Cx6rOV5JUq7k,2817
41
+ crypticorn/klines/client/models/symbol_info_response.py,sha256=nR5UNos61yh8vC_GoBnqDPU-30AowSu6M5dbUv4GmMQ,4142
42
+ crypticorn/klines/client/models/symbol_type.py,sha256=w_3BW5_G4qAa7nREeKIvmVqUV_Jd6qkPpVM6sJ7CQQA,2809
43
+ crypticorn/klines/client/models/timeframe.py,sha256=hxcNrPTIoYimYBwuNG_KowG9xB4X914743AOvvZCojA,1079
44
+ crypticorn/klines/client/models/udf_config_response.py,sha256=YaeCHhH_VX6sJlklw4eS9MH6W8E_RTxBcsS70gbcSeM,5277
45
+ crypticorn/klines/client/models/validation_error.py,sha256=Jmxe-nLipKwGbKLiZRHwrT3yF2s-micZ5s7Z3pd6jbM,3390
46
+ crypticorn/klines/client/models/validation_error_loc_inner.py,sha256=4okdF8FqhyWXtD1zZFyngleCv3B11eAJdIDI03eFIOY,5169
47
+ crypticorn/klines/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ crypticorn/klines/test/test_base_response_health_check_response.py,sha256=wEGQH5X-GPG42l7FwwSc7P7m3vQkaRzMfQVXu_PpxU4,2181
49
+ crypticorn/klines/test/test_base_response_list_funding_rate_response.py,sha256=cY7q9y_5DSLmbJrLf7qPsc1cpuiGy8B2yfZXCW6vjIw,2398
50
+ crypticorn/klines/test/test_base_response_list_str.py,sha256=NHsfoW-I81AEFXICiTFgnMial9v75xYcghQjdOYkZnQ,1949
51
+ crypticorn/klines/test/test_base_response_ohlcv_response.py,sha256=dkl0ErxNlL4gX5Yx-t12nBz-ZidifvvNKepq5T719xY,2619
52
+ crypticorn/klines/test/test_error_response.py,sha256=jBR4ga9WKW7sMZD2RYYwlV6nTz5fVNZxhu_L0irVAYk,1932
53
+ crypticorn/klines/test/test_exchange.py,sha256=OjD2pyyMa7h80bRqjG8D2qEm0Hgv6J3B2LdyBKWtIdI,1739
54
+ crypticorn/klines/test/test_funding_rate_response.py,sha256=z26hWTlS9tNxyYZS5QQ5G2bPZ2wtqHE_XinkCDy8MFo,2055
55
+ crypticorn/klines/test/test_funding_rates_api.py,sha256=pbaZ21JtiB8vWeY4KZKTnD_LzxEWZb4lvGctonWCyLQ,1123
56
+ crypticorn/klines/test/test_health_check_api.py,sha256=wl6vC5MwRIfHviZT_VaNQNudA4ZueVZaZPbDBDBtTgw,1055
57
+ crypticorn/klines/test/test_health_check_response.py,sha256=u4IYyQqDYZh3ZwXhrGMgEUZn6is0hHv08dGFSXiGRbM,1775
58
+ crypticorn/klines/test/test_history_error_response.py,sha256=jLtpjock2qfW-S77EbXCluRhgBnkbQVIls1gliOpS5E,1808
59
+ crypticorn/klines/test/test_history_no_data_response.py,sha256=nyaUzdxRfmxEwt5aoYyclXI_zSZxWmsKnjMSolOpc3s,2188
60
+ crypticorn/klines/test/test_history_success_response.py,sha256=VuBVDVXd55berpitDapgl8PIG31I8puTOoCl3RHg6Rk,2617
61
+ crypticorn/klines/test/test_http_validation_error.py,sha256=R4-Y5AaGG3KOF186n807fwG6l4CpWRYFgh5oGrDt5fs,1996
62
+ crypticorn/klines/test/test_market.py,sha256=ECis_r2Mw7CH8zpWq1ryeWdzxD8wB824NbVpQcfUPZw,948
63
+ crypticorn/klines/test/test_ohlcv_data_api.py,sha256=7BydPyycLPeGS5p1F0cNcGjwD7QGv-ZGcqNaiRekgE8,1105
64
+ crypticorn/klines/test/test_ohlcv_response.py,sha256=rKJqRgIRF13fqtfPeTwE4Vx_DewZJTqX1eS0XY28j0M,2680
65
+ crypticorn/klines/test/test_resolution.py,sha256=kvhW2JJ6PB2zjW7S9Z4cm62JwdgLSXzPmOJrreCW0vo,976
66
+ crypticorn/klines/test/test_response_get_history_udf_history_get.py,sha256=6Y3amNSIIniMz9sbmMdlVyJzz59s4sSgFYzLkW6OCWU,2789
67
+ crypticorn/klines/test/test_search_symbol_response.py,sha256=cK6VC4NG5TQZjbn12w_q5yMudGIWToF8Z99PAcfjFTg,2085
68
+ crypticorn/klines/test/test_sort_direction.py,sha256=r7qpTz_IPLYjZT9o0TU9wt1CKy_tvC1VneF3AyIYOY0,998
69
+ crypticorn/klines/test/test_symbol_group_response.py,sha256=wI8CO6lzejXC6RgGGrGOl8edR5N6BELp1ZSZVfH4Rjs,1782
70
+ crypticorn/klines/test/test_symbol_info_response.py,sha256=5dPtp3BJi62uvnjsaEo9gSvJMYc1kIu8puItixpUcSY,2781
71
+ crypticorn/klines/test/test_symbol_type.py,sha256=ojRM2yhJa-94yfhDRu4dGTV0vIK61lT3vCGT3PwIjDM,1710
72
+ crypticorn/klines/test/test_symbols_api.py,sha256=4eJ6Z2ELOn-zGqt7pUtk-BEcgMvK57uot4NFtsU_RA8,1070
73
+ crypticorn/klines/test/test_timeframe.py,sha256=6XpneN7_eZtGgyzNEB2gjqKaoDgROUrC_AzChimB0ZU,969
74
+ crypticorn/klines/test/test_udf_api.py,sha256=GHb4-jTWPwnDn1O0PxRq58p-LRvt1qXCoBLxoKUYYlA,2031
75
+ crypticorn/klines/test/test_udf_config_response.py,sha256=WCMj8VVWE1tQgIuvRSbuFI1ixU8iQx2J105VjA2mzmE,3214
76
+ crypticorn/klines/test/test_validation_error.py,sha256=6zSVzD_LX5yIGKGZJgsH74tsXQsV6DhJIpXyqPV-fow,1910
77
+ crypticorn/klines/test/test_validation_error_loc_inner.py,sha256=D4dHw64J4-bTmMd5K-JuwKaKzHfe8bJvHdAcAfX8nsA,1759
78
+ crypticorn/trade/main.py,sha256=v8Ojms0AUNajeqQjNcSWClXLBf_xyAB9JYCWsUs3I6I,1207
79
+ crypticorn/trade/requirements.txt,sha256=n8RhXDEAbEojFhhRCctaYym4TMVetN5A7FZ-tjjgMRA,93
80
+ crypticorn/trade/client/__init__.py,sha256=Fq_jmX_KcwTcUKG5SLky3UgeiAuJNwJLkomDXFc_APw,3241
81
+ crypticorn/trade/client/api_client.py,sha256=QFMMs_EPtc0_kS2uIhGPfBVbabN0nI7hyJ98FfeVa7s,27528
82
+ crypticorn/trade/client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
83
+ crypticorn/trade/client/configuration.py,sha256=i6US_tKRg9asIQwARr9mXtJyhATuvSu5vumscOTRqCg,17933
84
+ crypticorn/trade/client/exceptions.py,sha256=upZXBQh1bx93N8JIPJh89j67pArS4oxcCmZ_cfdK2XU,6471
85
+ crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
+ crypticorn/trade/client/rest.py,sha256=88DaQixyRu5OiYCPrSmUfZg5CK6-Qj5xv8FNbw3yzyM,9421
87
+ crypticorn/trade/client/api/__init__.py,sha256=s0PaWLA2MkjhypdxW0p_cb5Oxr3Bsds-3-x2HMA9Gtk,669
88
+ crypticorn/trade/client/api/api_keys_api.py,sha256=rA_FN5e1rmcaYjQC-ntk8A9gJntyai1oFLCOl7Obd3U,53921
89
+ crypticorn/trade/client/api/bots_api.py,sha256=X2qppDqJ_XRcUSlIFJpWoRAc6c3JodC_feWeVMJl1O4,44115
90
+ crypticorn/trade/client/api/exchanges_api.py,sha256=bN-WrYOjlCs4mTChkKlmM45WptJkkkh7Ny3zoQ4G81A,10898
91
+ crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=OQBCOZjsywFHpIS25gl6_FC5zTE_PORnMAReOrQANuQ,53610
92
+ crypticorn/trade/client/api/notifications_api.py,sha256=zlgW01-iAM_cdjGYuKThjV3BC5JV4LlKXhVUjuUxdug,65207
93
+ crypticorn/trade/client/api/orders_api.py,sha256=O7CUT0yARw0aE2tEumXp0b3zoDXhWEs_yswQHTtjzhk,11841
94
+ crypticorn/trade/client/api/status_api.py,sha256=iQ3GeojJ1FMEmKihgDkdIxJAbttVO7m8HAax1zcg1ZE,10020
95
+ crypticorn/trade/client/api/strategies_api.py,sha256=XQiSOpDSgMC0_gi_KtZvFx0Lpj_8ejoaKL3Kjq3_I1I,11910
96
+ crypticorn/trade/client/api/trading_actions_api.py,sha256=B9div3_yrd0JjzCG3eFnxteIS4aSd-ZeRcWJ5nxNbas,33969
97
+ crypticorn/trade/client/models/__init__.py,sha256=Sg6eh8BbEwF2FG7FphlBkCuWV93UcZjgZ5B0lIGF7B4,1995
98
+ crypticorn/trade/client/models/action_model.py,sha256=aJxhjAEObpwCX8avrXvQ1hgfvNrQjRIqYm0E7rmTYho,9224
99
+ crypticorn/trade/client/models/api_error_identifier.py,sha256=LKcH6vRnpPxIWnzbhICAsx4D5uN_OsOf3BzplmYKhOE,3402
100
+ crypticorn/trade/client/models/api_key_model.py,sha256=cVCd-r27li44HkMD8w4d4NCJS3cizUXRjIh_2cMt0Fg,4911
101
+ crypticorn/trade/client/models/bot_model.py,sha256=MEqZVXkE4_JF9UrUVFQzkazbmDMwxKw6Ck_7Qqape_Y,4726
102
+ crypticorn/trade/client/models/exchange.py,sha256=UdNrCO_0L8ZFmuVsBgtEjV71UpRdi2I0XW-YeDyb7zw,746
103
+ crypticorn/trade/client/models/execution_ids.py,sha256=dJt4Qjg0B1TdeL3fI0_ZNGMZgYX_KBwIbzwxSWgSCao,2877
104
+ crypticorn/trade/client/models/futures_balance.py,sha256=VJ2Cdm5qdvzQwaF0sR2tIoWhb5MDQAvWOOVl_lyijNc,4012
105
+ crypticorn/trade/client/models/futures_trading_action.py,sha256=A3JO5ifaxm-xBRlMosMFAoOe-KkM1Bx6FDdGFDVQUhs,8836
106
+ crypticorn/trade/client/models/http_validation_error.py,sha256=3SRsszhn2w2qVZO9FhNR2M0ozNUGeWvPF-ywzE5ehCg,3013
107
+ crypticorn/trade/client/models/margin_mode.py,sha256=u96KDpDFRM0MIs4xbXzDOT-wn6uO73wBGZthoTP1MuE,765
108
+ crypticorn/trade/client/models/market_type.py,sha256=ppUr4WJnAiuZEZkD1WnM-oKi4vKx0ykXweAXAyfPTCk,745
109
+ crypticorn/trade/client/models/notification_model.py,sha256=1kDdj6jt9HY4eJcRjQLkLmXw5TCLEcNsh6sQkuBkZ90,4358
110
+ crypticorn/trade/client/models/notification_type.py,sha256=Cq7GDV6BwBxttohb7NMdC0nWx1-Igdq4pUDYY8CCiu0,803
111
+ crypticorn/trade/client/models/order_model.py,sha256=tEVIRwwjnfa_-tFck4E-hU8JR0wXq2F01edrfHi9ZQI,11303
112
+ crypticorn/trade/client/models/order_status.py,sha256=V13eUjWXoZn5TD0Eyl2Q7XL9Ih6zkOUyCPOhNQ7UyTk,840
113
+ crypticorn/trade/client/models/post_futures_action.py,sha256=AdD6sQxuNUSglNUwXosTYcBdtYYqIrIvHtYcyEm3nvA,3003
114
+ crypticorn/trade/client/models/strategy_exchange_info.py,sha256=sNATmx0U6T6weg-T3vYsr1JaqgcG-36qdfuBKqpWY9Q,2834
115
+ crypticorn/trade/client/models/strategy_model.py,sha256=pCdIphCOYRT_64qKwhy4tqydlShmrhlMQH-Sn9DYXo8,4834
116
+ crypticorn/trade/client/models/tpsl.py,sha256=6Ue5uRCkMm1dUSr7xT4Y9308ZsjoZwIQ74koZGBAF6c,4180
117
+ crypticorn/trade/client/models/trading_action_type.py,sha256=eH7sFKbFojxqMdtmqq_FOrVVZ6jEOwK-uRPBBWQdeUw,845
118
+ crypticorn/trade/client/models/update_notification.py,sha256=7Aw4z98ANT6D5octUmz5UXe6EC7_Mk8ax679bjjCkXk,2988
119
+ crypticorn/trade/client/models/validation_error.py,sha256=hMZJHRMZuiByzCvD7zyR5HVzlzJSnLKcMnybUalQvgI,3105
120
+ crypticorn/trade/client/models/validation_error_loc_inner.py,sha256=wHiW_qKw46E2pUdOnesgpdnuqpTX9IQTaEOVDgph5_E,4885
121
+ crypticorn/trade/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
+ crypticorn/trade/test/test_action_model.py,sha256=CQki4tjuOz71GvodBqoZyTB-p7o5vYf5LhQNcxUSPB4,2712
123
+ crypticorn/trade/test/test_api_error_identifier.py,sha256=8bTY1gkiOQw-pRiemmsNzJ2ncrJH7ZCtjRtq-Bog0Po,749
124
+ crypticorn/trade/test/test_api_key_model.py,sha256=MtwQha2mAKCFDMnvy7HWcNVgUF3C1d3U9wRFRFKSguw,1658
125
+ crypticorn/trade/test/test_api_keys_api.py,sha256=XyYCZy-2l6oMOfaKiW7TIH5j8K4MMszu1RBeuHQ0_6g,1299
126
+ crypticorn/trade/test/test_bot_model.py,sha256=SLISBX_Z9E_WnQ39U8_EFWlwqeQ2hel4oDNhD4be70M,1762
127
+ crypticorn/trade/test/test_bots_api.py,sha256=tTDtxJjzTjjquGZGwiO2sla2t_T6XDi12ZDcK0I_op0,1098
128
+ crypticorn/trade/test/test_exchange.py,sha256=JXuYtpeQFizjOrIgfPhc_JL0Q4MGNqXd8-WQq9ijQMo,677
129
+ crypticorn/trade/test/test_exchanges_api.py,sha256=AVnrQNHFVOzTEqeK6oG6lNPBuRVDu3Rf9vBWJVN_u-k,775
130
+ crypticorn/trade/test/test_execution_ids.py,sha256=ZhqxDYgb2EFaXTcMpSWEGfTM0xquhkcsbf-Xqg8OxgM,1757
131
+ crypticorn/trade/test/test_futures_balance.py,sha256=G010cOro2qYAfSltlY4987FfO-7piLrjw2YRZC_SHqo,1777
132
+ crypticorn/trade/test/test_futures_trading_action.py,sha256=AYt98IjeVZ9D0CTY5U1Q9yw47Vj89G9uStF_4lzO7BA,2789
133
+ crypticorn/trade/test/test_futures_trading_panel_api.py,sha256=TqxyO1S5daz1Bydpdi7PEjLMZfg6RTd_xHG3TYBdaBo,1451
134
+ crypticorn/trade/test/test_http_validation_error.py,sha256=_Dqp6mHIzGu0oOZAdbf5S7_RBdkULD7Idg9pJWQ_3t8,1711
135
+ crypticorn/trade/test/test_margin_mode.py,sha256=NP9afpV9wfTLbfr8YjkI0qU_W2Tb7IDcl9yzGRp_tfQ,692
136
+ crypticorn/trade/test/test_market_type.py,sha256=ZfF5C1Oy40wIwG5NnwGnPBEGEoCPYEKwRCBRZo78AkQ,692
137
+ crypticorn/trade/test/test_notification_model.py,sha256=aXxFWBR_aqK1666Frr86c4GuAgzCbsYF15VYnyFb8Jw,1690
138
+ crypticorn/trade/test/test_notification_type.py,sha256=oR26dNk6ku6t-c9gM7NXSgIO7KBN7rQgiyZGW1Nrf1Y,734
139
+ crypticorn/trade/test/test_notifications_api.py,sha256=H6HMhM7LujEAKl4ppjH20zzTtRu5WVxJHf4ySI1Uqso,1553
140
+ crypticorn/trade/test/test_order_model.py,sha256=yZj65SE1mJgKKiiPgo-KX9SWAu95YppBfqGkHp8K9D8,2183
141
+ crypticorn/trade/test/test_order_status.py,sha256=knUS4UQBx1TsjVxC5esSkSEMGP29ZFAvk6TWMcQDRpM,699
142
+ crypticorn/trade/test/test_orders_api.py,sha256=uKUEgAgNgGFKljoI4svWPzROiM4ztcaA2FHhBIwAEdE,751
143
+ crypticorn/trade/test/test_post_futures_action.py,sha256=EPmAUVjFfSSwF4hYFGFFdCiJ1wEVCe8gqXaxlKlOQnI,2098
144
+ crypticorn/trade/test/test_status_api.py,sha256=Dq7Aln_rJSkFkwOk6qKKzBVDZV0edl99wCZDTl6T3Vs,733
145
+ crypticorn/trade/test/test_strategies_api.py,sha256=udwtNXWkQ6Qtk7ivB1KkoQnktE5A1dc1ealO2aCj71o,783
146
+ crypticorn/trade/test/test_strategy_exchange_info.py,sha256=TTLzxbPbCTf-ILjef1r2zNkD63hYFeJd2539-WA5cWE,1582
147
+ crypticorn/trade/test/test_strategy_model.py,sha256=JIF6DjKLB2q57J8t4lDuaOUJVIKDRgtrJI6Fc5LpnSQ,2220
148
+ crypticorn/trade/test/test_tpsl.py,sha256=7pFHNNt8_H8ujDXhNL-XwJzI2ZEEp2zoMQgkmGD4Kb4,1449
149
+ crypticorn/trade/test/test_trading_action_type.py,sha256=cd1DiGo3Rjk-EKOG0u5zjPowxNOKb_JBL10iI8MfoZ4,742
150
+ crypticorn/trade/test/test_trading_actions_api.py,sha256=_yQrNMPzlKaJsFYTc2WFAnjnPWVQZ0FAsJk0p91ECoA,1082
151
+ crypticorn/trade/test/test_update_notification.py,sha256=W_-DaX50HSCP0wW5aE1djGXirfwyALnAVVu9DWBy2Ew,1521
152
+ crypticorn/trade/test/test_validation_error.py,sha256=W7o_XtQsnOc8iNe2kvQuBKpISPRoN7ZS1TS7H7w364M,1625
153
+ crypticorn/trade/test/test_validation_error_loc_inner.py,sha256=61T9xO4y0KiXAK3x66rsL3dMpym392tT1QlJTJb6mYw,1474
154
+ crypticorn-1.0.2rc1.dist-info/LICENSE.md,sha256=4QRTsg__j9b8qUNkL1jcDlrOMViv5B7wJF3p7khs-M0,1053
155
+ crypticorn-1.0.2rc1.dist-info/METADATA,sha256=WxqkWlpxCM_66TcPRlebnqke2C8_R6v9_EIHIOuR5zo,1973
156
+ crypticorn-1.0.2rc1.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
157
+ crypticorn-1.0.2rc1.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
158
+ crypticorn-1.0.2rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (76.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,31 +0,0 @@
1
- from . import *
2
- from .__init__ import *
3
- from .action_model import *
4
- from .api_error_identifier import *
5
- from .api_key_model import *
6
- from .bot_model import *
7
- from .create_api_key_response import *
8
- from .deleted import *
9
- from .exchange import *
10
- from .execution_ids import *
11
- from .futures_balance import *
12
- from .futures_balance_error import *
13
- from .futures_trading_action import *
14
- from .get_futures_balance200_response_inner import *
15
- from .http_validation_error import *
16
- from .id import *
17
- from .margin_mode import *
18
- from .market_type import *
19
- from .modified import *
20
- from .notification_model import *
21
- from .notification_type import *
22
- from .order_model import *
23
- from .order_status import *
24
- from .post_futures_action import *
25
- from .strategy_exchange_info import *
26
- from .strategy_model import *
27
- from .tpsl import *
28
- from .trading_action_type import *
29
- from .update_notification import *
30
- from .validation_error import *
31
- from .validation_error_loc_inner import *
@@ -1,87 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- FastAPI
5
-
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
-
8
- The version of the OpenAPI document: 0.1.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- from __future__ import annotations
16
- import pprint
17
- import re # noqa: F401
18
- import json
19
-
20
- from pydantic import BaseModel, ConfigDict, Field, StrictInt
21
- from typing import Any, ClassVar, Dict, List
22
- from typing import Optional, Set
23
- from typing_extensions import Self
24
-
25
- class Modified(BaseModel):
26
- """
27
- Modified
28
- """ # noqa: E501
29
- modified: StrictInt = Field(description="Number of modified documents")
30
- __properties: ClassVar[List[str]] = ["modified"]
31
-
32
- model_config = ConfigDict(
33
- populate_by_name=True,
34
- validate_assignment=True,
35
- protected_namespaces=(),
36
- )
37
-
38
-
39
- def to_str(self) -> str:
40
- """Returns the string representation of the model using alias"""
41
- return pprint.pformat(self.model_dump(by_alias=True))
42
-
43
- def to_json(self) -> str:
44
- """Returns the JSON representation of the model using alias"""
45
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
46
- return json.dumps(self.to_dict())
47
-
48
- @classmethod
49
- def from_json(cls, json_str: str) -> Optional[Self]:
50
- """Create an instance of Modified from a JSON string"""
51
- return cls.from_dict(json.loads(json_str))
52
-
53
- def to_dict(self) -> Dict[str, Any]:
54
- """Return the dictionary representation of the model using alias.
55
-
56
- This has the following differences from calling pydantic's
57
- `self.model_dump(by_alias=True)`:
58
-
59
- * `None` is only added to the output dict for nullable fields that
60
- were set at model initialization. Other fields with value `None`
61
- are ignored.
62
- """
63
- excluded_fields: Set[str] = set([
64
- ])
65
-
66
- _dict = self.model_dump(
67
- by_alias=True,
68
- exclude=excluded_fields,
69
- exclude_none=True,
70
- )
71
- return _dict
72
-
73
- @classmethod
74
- def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
75
- """Create an instance of Modified from a dict"""
76
- if obj is None:
77
- return None
78
-
79
- if not isinstance(obj, dict):
80
- return cls.model_validate(obj)
81
-
82
- _obj = cls.model_validate({
83
- "modified": obj.get("modified")
84
- })
85
- return _obj
86
-
87
-
@@ -1,40 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: crypticorn
3
- Version: 1.0.1
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
- Project-URL: documentation, https://docs.crypticorn.com
9
- Keywords: machine learning,data science,crypto,modelling
10
- Classifier: Topic :: Scientific/Engineering
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Intended Audience :: Science/Research
14
- Classifier: Operating System :: OS Independent
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Typing :: Typed
17
- Requires-Python: >=3.10
18
- Description-Content-Type: text/markdown
19
- License-File: LICENSE.md
20
- Requires-Dist: pandas<3.0.0,>=2.2.0
21
- Requires-Dist: requests<3.0.0,>=2.32.0
22
- Requires-Dist: tqdm<5.0.0,>=4.67.0
23
- Requires-Dist: pydantic<3.0.0,>=2.0.0
24
- Provides-Extra: dev
25
- Requires-Dist: black; extra == "dev"
26
- Requires-Dist: twine; extra == "dev"
27
- Requires-Dist: build; extra == "dev"
28
-
29
- # What is Crypticorn?
30
-
31
- Crypticorn is at the forefront of cutting-edge artificial intelligence cryptocurrency trading.
32
- Crypticorn offers AI-based solutions for both active and passive investors, including:
33
- - Prediction Dashboard with trading terminal,
34
- - AI Agents with different strategies,
35
- - DEX AI Signals for newly launched tokens,
36
- - DEX AI Bots
37
-
38
- Use this API Client to contribute to the so-called Hive AI, a community driven AI Meta Model for predicting the
39
- cryptocurrency market.
40
-
@@ -1,38 +0,0 @@
1
- crypticorn/__init__.py,sha256=xwaLwFv2nokaml0otKuLpR3KR8L6SFRWtu4KmFdWeeA,118
2
- crypticorn/api.py,sha256=YKtYHg7dj4yDKNAyEWNuyzQ8-_HLv2Avuy2iB951Vd4,4853
3
- crypticorn/utils.py,sha256=veuxIfhHvzPr_JBDwLu9Allsnkesaz22tzcEnHkkhYs,3126
4
- crypticorn/models/__init__.py,sha256=koNGF8it9H5ih4n_5Smsgvs4f19SnKdQLMBWOAgShfU,954
5
- crypticorn/models/action_model.py,sha256=1NVncAYo0gYdZVOkDG6wGNlBiPKCPi3Ts0tt6P141XI,9056
6
- crypticorn/models/api_error_identifier.py,sha256=M1VHRx66vp6kELsDTT3JtbaI5d2ynBfuBurGQc9I1m0,3320
7
- crypticorn/models/api_key_model.py,sha256=upsYNOeAj6hnVG7GLN31z7cXMbfj903SU5QMNvPrj5A,4803
8
- crypticorn/models/bot_model.py,sha256=-O_9PHhD03ik6rAp8VA60oiFfexleTwEMuwnR13AWl4,4341
9
- crypticorn/models/create_api_key_response.py,sha256=uWjizw_zclS9ScRiUg7CZ-psHtO3FaHkzqy2T5EdG5o,2995
10
- crypticorn/models/deleted.py,sha256=GTLuJtiIvSOEo4f1LwoeQWNXiVNNwl7pYvi5uV402UU,2514
11
- crypticorn/models/exchange.py,sha256=UdNrCO_0L8ZFmuVsBgtEjV71UpRdi2I0XW-YeDyb7zw,746
12
- crypticorn/models/execution_ids.py,sha256=dJt4Qjg0B1TdeL3fI0_ZNGMZgYX_KBwIbzwxSWgSCao,2877
13
- crypticorn/models/futures_balance.py,sha256=VJ2Cdm5qdvzQwaF0sR2tIoWhb5MDQAvWOOVl_lyijNc,4012
14
- crypticorn/models/futures_balance_error.py,sha256=3OqfU4Fi09txX99Fm7BdHeBMFOYCLq4fOUIaKwrBJhQ,2696
15
- crypticorn/models/futures_trading_action.py,sha256=HqA1X9z_RC2j9LRubaRjY04tzuI8hRoCf6CjFYE1nKY,8784
16
- crypticorn/models/get_futures_balance200_response_inner.py,sha256=uUvnkgiVOf_gMBRLyjDQ5YuELkSAUOqjjQK3bhk0mz8,5100
17
- crypticorn/models/http_validation_error.py,sha256=dPlioKpQGd6jBnATJ9USzQTiSoeEOBlLFCN91q9y-6w,3000
18
- crypticorn/models/id.py,sha256=dY7_AH699HCKPGTCdGsiiI3aWPaCmXpYYMFT6kJ-fdA,2480
19
- crypticorn/models/margin_mode.py,sha256=u96KDpDFRM0MIs4xbXzDOT-wn6uO73wBGZthoTP1MuE,765
20
- crypticorn/models/market_type.py,sha256=ppUr4WJnAiuZEZkD1WnM-oKi4vKx0ykXweAXAyfPTCk,745
21
- crypticorn/models/modified.py,sha256=on721AzP0g30cqj-RBFBevmsWSC5mmb87BrDlIBerL8,2523
22
- crypticorn/models/notification_model.py,sha256=4AbPDhl5ZPRRJBeIR47fLFcJI27O3iAR-zrEHf7aKUI,4107
23
- crypticorn/models/notification_type.py,sha256=Cq7GDV6BwBxttohb7NMdC0nWx1-Igdq4pUDYY8CCiu0,803
24
- crypticorn/models/order_model.py,sha256=oIbg6D5BpOe36xKWEbS6MleFzYG-opJzLjwjqk60ulI,11102
25
- crypticorn/models/order_status.py,sha256=V13eUjWXoZn5TD0Eyl2Q7XL9Ih6zkOUyCPOhNQ7UyTk,840
26
- crypticorn/models/post_futures_action.py,sha256=PtUp1VFEb6vOc5lBDKDW_bJ7jSKMrSFClJMY047Nj7c,2990
27
- crypticorn/models/strategy_exchange_info.py,sha256=zqSbZ1Xi5sFs3QCiq0n8dnoxszds1Fw-WekJN0kU_Eg,2821
28
- crypticorn/models/strategy_model.py,sha256=neXU4Zm7YAzqjD432GYCOOPmvN7mJ3fqWr4RbNPk_3w,4384
29
- crypticorn/models/tpsl.py,sha256=6Ue5uRCkMm1dUSr7xT4Y9308ZsjoZwIQ74koZGBAF6c,4180
30
- crypticorn/models/trading_action_type.py,sha256=eH7sFKbFojxqMdtmqq_FOrVVZ6jEOwK-uRPBBWQdeUw,845
31
- crypticorn/models/update_notification.py,sha256=7Aw4z98ANT6D5octUmz5UXe6EC7_Mk8ax679bjjCkXk,2988
32
- crypticorn/models/validation_error.py,sha256=EOWKqOHCzc1J1YwpM0DNepWh4dDQAb68DryLykxat9Y,3092
33
- crypticorn/models/validation_error_loc_inner.py,sha256=wHiW_qKw46E2pUdOnesgpdnuqpTX9IQTaEOVDgph5_E,4885
34
- crypticorn-1.0.1.dist-info/LICENSE.md,sha256=4QRTsg__j9b8qUNkL1jcDlrOMViv5B7wJF3p7khs-M0,1053
35
- crypticorn-1.0.1.dist-info/METADATA,sha256=cPuxmacRQus1kP2wIySya0qMOZ7oGy2cNMG8bY6zCMo,1517
36
- crypticorn-1.0.1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
37
- crypticorn-1.0.1.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
38
- crypticorn-1.0.1.dist-info/RECORD,,
File without changes