crypticorn 1.0.0__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.
- crypticorn/__init__.py +3 -3
- crypticorn/client.py +722 -0
- crypticorn/{api.py → hive/main.py} +6 -6
- crypticorn/hive/requirements.txt +4 -0
- crypticorn/{utils.py → hive/utils.py} +2 -2
- crypticorn/klines/client/__init__.py +62 -0
- crypticorn/klines/client/api/__init__.py +9 -0
- crypticorn/klines/client/api/funding_rates_api.py +362 -0
- crypticorn/klines/client/api/health_check_api.py +281 -0
- crypticorn/klines/client/api/ohlcv_data_api.py +409 -0
- crypticorn/klines/client/api/symbols_api.py +308 -0
- crypticorn/klines/client/api/udf_api.py +1929 -0
- crypticorn/klines/client/api_client.py +797 -0
- crypticorn/klines/client/api_response.py +21 -0
- crypticorn/klines/client/configuration.py +565 -0
- crypticorn/klines/client/exceptions.py +216 -0
- crypticorn/klines/client/models/__init__.py +41 -0
- crypticorn/klines/client/models/base_response_health_check_response.py +108 -0
- crypticorn/klines/client/models/base_response_list_funding_rate_response.py +112 -0
- crypticorn/klines/client/models/base_response_list_str.py +104 -0
- crypticorn/klines/client/models/base_response_ohlcv_response.py +108 -0
- crypticorn/klines/client/models/error_response.py +101 -0
- crypticorn/klines/client/models/exchange.py +91 -0
- crypticorn/klines/client/models/funding_rate_response.py +92 -0
- crypticorn/klines/client/models/health_check_response.py +89 -0
- crypticorn/klines/client/models/history_error_response.py +89 -0
- crypticorn/klines/client/models/history_no_data_response.py +99 -0
- crypticorn/klines/client/models/history_success_response.py +99 -0
- crypticorn/klines/client/models/http_validation_error.py +95 -0
- crypticorn/klines/client/models/market.py +37 -0
- crypticorn/klines/client/models/ohlcv_response.py +98 -0
- crypticorn/klines/client/models/resolution.py +40 -0
- crypticorn/klines/client/models/response_get_history_udf_history_get.py +149 -0
- crypticorn/klines/client/models/search_symbol_response.py +97 -0
- crypticorn/klines/client/models/sort_direction.py +37 -0
- crypticorn/klines/client/models/symbol_group_response.py +87 -0
- crypticorn/klines/client/models/symbol_info_response.py +115 -0
- crypticorn/klines/client/models/symbol_type.py +89 -0
- crypticorn/klines/client/models/timeframe.py +40 -0
- crypticorn/klines/client/models/udf_config_response.py +121 -0
- crypticorn/klines/client/models/validation_error.py +99 -0
- crypticorn/klines/client/models/validation_error_loc_inner.py +138 -0
- crypticorn/klines/client/py.typed +0 -0
- crypticorn/klines/client/rest.py +257 -0
- crypticorn/klines/main.py +42 -0
- crypticorn/klines/requirements.txt +4 -0
- crypticorn/klines/test/__init__.py +0 -0
- crypticorn/klines/test/test_base_response_health_check_response.py +56 -0
- crypticorn/klines/test/test_base_response_list_funding_rate_response.py +59 -0
- crypticorn/klines/test/test_base_response_list_str.py +56 -0
- crypticorn/klines/test/test_base_response_ohlcv_response.py +72 -0
- crypticorn/klines/test/test_error_response.py +57 -0
- crypticorn/klines/test/test_exchange.py +56 -0
- crypticorn/klines/test/test_funding_rate_response.py +56 -0
- crypticorn/klines/test/test_funding_rates_api.py +38 -0
- crypticorn/klines/test/test_health_check_api.py +38 -0
- crypticorn/klines/test/test_health_check_response.py +52 -0
- crypticorn/klines/test/test_history_error_response.py +53 -0
- crypticorn/klines/test/test_history_no_data_response.py +69 -0
- crypticorn/klines/test/test_history_success_response.py +87 -0
- crypticorn/klines/test/test_http_validation_error.py +58 -0
- crypticorn/klines/test/test_market.py +33 -0
- crypticorn/klines/test/test_ohlcv_data_api.py +38 -0
- crypticorn/klines/test/test_ohlcv_response.py +86 -0
- crypticorn/klines/test/test_resolution.py +33 -0
- crypticorn/klines/test/test_response_get_history_udf_history_get.py +89 -0
- crypticorn/klines/test/test_search_symbol_response.py +62 -0
- crypticorn/klines/test/test_sort_direction.py +33 -0
- crypticorn/klines/test/test_symbol_group_response.py +53 -0
- crypticorn/klines/test/test_symbol_info_response.py +84 -0
- crypticorn/klines/test/test_symbol_type.py +54 -0
- crypticorn/klines/test/test_symbols_api.py +38 -0
- crypticorn/klines/test/test_timeframe.py +33 -0
- crypticorn/klines/test/test_udf_api.py +80 -0
- crypticorn/klines/test/test_udf_config_response.py +95 -0
- crypticorn/klines/test/test_validation_error.py +60 -0
- crypticorn/klines/test/test_validation_error_loc_inner.py +50 -0
- crypticorn/trade/client/__init__.py +63 -0
- crypticorn/trade/client/api/__init__.py +13 -0
- crypticorn/trade/client/api/api_keys_api.py +1468 -0
- crypticorn/trade/client/api/bots_api.py +1211 -0
- crypticorn/trade/client/api/exchanges_api.py +297 -0
- crypticorn/trade/client/api/futures_trading_panel_api.py +1463 -0
- crypticorn/trade/client/api/notifications_api.py +1767 -0
- crypticorn/trade/client/api/orders_api.py +331 -0
- crypticorn/trade/client/api/status_api.py +278 -0
- crypticorn/trade/client/api/strategies_api.py +331 -0
- crypticorn/trade/client/api/trading_actions_api.py +898 -0
- crypticorn/trade/client/api_client.py +797 -0
- crypticorn/trade/client/api_response.py +21 -0
- crypticorn/trade/client/configuration.py +574 -0
- crypticorn/trade/client/exceptions.py +216 -0
- crypticorn/trade/client/models/__init__.py +38 -0
- crypticorn/trade/client/models/action_model.py +202 -0
- crypticorn/trade/client/models/api_error_identifier.py +83 -0
- crypticorn/trade/client/models/api_key_model.py +135 -0
- crypticorn/trade/client/models/bot_model.py +122 -0
- crypticorn/trade/client/models/exchange.py +37 -0
- crypticorn/trade/client/models/execution_ids.py +91 -0
- crypticorn/trade/client/models/futures_balance.py +109 -0
- crypticorn/trade/client/models/futures_trading_action.py +198 -0
- crypticorn/trade/client/models/http_validation_error.py +95 -0
- crypticorn/trade/client/models/margin_mode.py +37 -0
- crypticorn/trade/client/models/market_type.py +37 -0
- crypticorn/trade/client/models/notification_model.py +113 -0
- crypticorn/trade/client/models/notification_type.py +39 -0
- crypticorn/trade/client/models/order_model.py +263 -0
- crypticorn/trade/client/models/order_status.py +40 -0
- crypticorn/trade/client/models/post_futures_action.py +93 -0
- crypticorn/trade/client/models/strategy_exchange_info.py +90 -0
- crypticorn/trade/client/models/strategy_model.py +119 -0
- crypticorn/trade/client/models/tpsl.py +116 -0
- crypticorn/trade/client/models/trading_action_type.py +39 -0
- crypticorn/trade/client/models/update_notification.py +91 -0
- crypticorn/trade/client/models/validation_error.py +99 -0
- crypticorn/trade/client/models/validation_error_loc_inner.py +138 -0
- crypticorn/trade/client/py.typed +0 -0
- crypticorn/trade/client/rest.py +257 -0
- crypticorn/trade/main.py +38 -0
- crypticorn/trade/requirements.txt +4 -0
- crypticorn/trade/test/__init__.py +0 -0
- crypticorn/trade/test/test_action_model.py +87 -0
- crypticorn/trade/test/test_api_error_identifier.py +33 -0
- crypticorn/trade/test/test_api_key_model.py +61 -0
- crypticorn/trade/test/test_api_keys_api.py +66 -0
- crypticorn/trade/test/test_bot_model.py +64 -0
- crypticorn/trade/test/test_bots_api.py +59 -0
- crypticorn/trade/test/test_exchange.py +33 -0
- crypticorn/trade/test/test_exchanges_api.py +38 -0
- crypticorn/trade/test/test_execution_ids.py +68 -0
- crypticorn/trade/test/test_futures_balance.py +62 -0
- crypticorn/trade/test/test_futures_trading_action.py +86 -0
- crypticorn/trade/test/test_futures_trading_panel_api.py +66 -0
- crypticorn/trade/test/test_http_validation_error.py +58 -0
- crypticorn/trade/test/test_margin_mode.py +33 -0
- crypticorn/trade/test/test_market_type.py +33 -0
- crypticorn/trade/test/test_notification_model.py +59 -0
- crypticorn/trade/test/test_notification_type.py +33 -0
- crypticorn/trade/test/test_notifications_api.py +73 -0
- crypticorn/trade/test/test_order_model.py +75 -0
- crypticorn/trade/test/test_order_status.py +33 -0
- crypticorn/trade/test/test_orders_api.py +38 -0
- crypticorn/trade/test/test_post_futures_action.py +72 -0
- crypticorn/trade/test/test_status_api.py +38 -0
- crypticorn/trade/test/test_strategies_api.py +38 -0
- crypticorn/trade/test/test_strategy_exchange_info.py +54 -0
- crypticorn/trade/test/test_strategy_model.py +73 -0
- crypticorn/trade/test/test_tpsl.py +56 -0
- crypticorn/trade/test/test_trading_action_type.py +33 -0
- crypticorn/trade/test/test_trading_actions_api.py +52 -0
- crypticorn/trade/test/test_update_notification.py +54 -0
- crypticorn/trade/test/test_validation_error.py +60 -0
- crypticorn/trade/test/test_validation_error_loc_inner.py +50 -0
- crypticorn-1.0.2rc1.dist-info/METADATA +47 -0
- crypticorn-1.0.2rc1.dist-info/RECORD +158 -0
- {crypticorn-1.0.0.dist-info → crypticorn-1.0.2rc1.dist-info}/WHEEL +1 -1
- crypticorn-1.0.0.dist-info/METADATA +0 -34
- crypticorn-1.0.0.dist-info/RECORD +0 -8
- {crypticorn-1.0.0.dist-info → crypticorn-1.0.2rc1.dist-info}/LICENSE.md +0 -0
- {crypticorn-1.0.0.dist-info → crypticorn-1.0.2rc1.dist-info}/top_level.txt +0 -0
@@ -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,34 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: crypticorn
|
3
|
-
Version: 1.0.0
|
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
|
-
|
23
|
-
# What is Crypticorn?
|
24
|
-
|
25
|
-
Crypticorn is at the forefront of cutting-edge artificial intelligence cryptocurrency trading.
|
26
|
-
Crypticorn offers AI-based solutions for both active and passive investors, including:
|
27
|
-
- Prediction Dashboard with trading terminal,
|
28
|
-
- AI Trading Bots with different strategies,
|
29
|
-
- DEX AI Signals for newly launched tokens,
|
30
|
-
- DEX AI Bots
|
31
|
-
|
32
|
-
Use this API Client to contribute to the so-called Hive AI, a community driven AI Meta Model for predicting the
|
33
|
-
cryptocurrency market.
|
34
|
-
|
@@ -1,8 +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-1.0.0.dist-info/LICENSE.md,sha256=4QRTsg__j9b8qUNkL1jcDlrOMViv5B7wJF3p7khs-M0,1053
|
5
|
-
crypticorn-1.0.0.dist-info/METADATA,sha256=mXN5YbgYqrZ1Ax7s6iddK8_7Lv5NRng8ppV22qpevgI,1319
|
6
|
-
crypticorn-1.0.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
7
|
-
crypticorn-1.0.0.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
|
8
|
-
crypticorn-1.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|