crypticorn 2.4.5__py3-none-any.whl → 2.4.7__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/client.py +1 -1
- crypticorn/common/auth.py +7 -9
- crypticorn/common/errors.py +6 -1
- crypticorn/common/scopes.py +2 -1
- crypticorn/common/utils.py +15 -5
- crypticorn/klines/main.py +10 -5
- crypticorn/metrics/client/models/exchange_mapping.py +4 -2
- crypticorn/metrics/client/models/trading_status.py +1 -0
- crypticorn/metrics/main.py +5 -4
- crypticorn/pay/client/__init__.py +5 -4
- crypticorn/pay/client/api/payments_api.py +17 -17
- crypticorn/pay/client/api/products_api.py +49 -48
- crypticorn/pay/client/models/__init__.py +5 -4
- crypticorn/pay/client/models/payment.py +28 -147
- crypticorn/pay/client/models/product_create.py +120 -0
- crypticorn/pay/client/models/product_read.py +123 -0
- crypticorn/pay/client/models/product_sub_read.py +103 -0
- crypticorn/pay/client/models/product_update.py +142 -0
- crypticorn/trade/client/__init__.py +6 -8
- crypticorn/trade/client/api/__init__.py +1 -0
- crypticorn/trade/client/api/api_keys_api.py +273 -167
- crypticorn/trade/client/api/bots_api.py +226 -140
- crypticorn/trade/client/api/exchanges_api.py +51 -31
- crypticorn/trade/client/api/futures_trading_panel_api.py +272 -169
- crypticorn/trade/client/api/notifications_api.py +323 -200
- crypticorn/trade/client/api/orders_api.py +60 -40
- crypticorn/trade/client/api/status_api.py +49 -31
- crypticorn/trade/client/api/strategies_api.py +223 -137
- crypticorn/trade/client/api/trading_actions_api.py +170 -106
- crypticorn/trade/client/api_client.py +153 -111
- crypticorn/trade/client/api_response.py +3 -2
- crypticorn/trade/client/configuration.py +115 -128
- crypticorn/trade/client/exceptions.py +21 -25
- crypticorn/trade/client/models/__init__.py +6 -8
- crypticorn/trade/client/models/action_model.py +54 -108
- crypticorn/trade/client/models/api_error_identifier.py +72 -76
- crypticorn/trade/client/models/api_error_level.py +11 -9
- crypticorn/trade/client/models/api_error_type.py +11 -9
- crypticorn/trade/client/models/bot_model.py +36 -57
- crypticorn/trade/client/models/bot_status.py +11 -9
- crypticorn/trade/client/models/exchange.py +9 -7
- crypticorn/trade/client/models/exchange_key_model.py +34 -44
- crypticorn/trade/client/models/execution_ids.py +18 -18
- crypticorn/trade/client/models/futures_balance.py +27 -43
- crypticorn/trade/client/models/futures_trading_action.py +50 -102
- crypticorn/trade/client/models/http_validation_error.py +15 -19
- crypticorn/trade/client/models/margin_mode.py +9 -7
- crypticorn/trade/client/models/market_type.py +9 -7
- crypticorn/trade/client/models/notification_model.py +32 -52
- crypticorn/trade/client/models/order_model.py +72 -112
- crypticorn/trade/client/models/order_status.py +12 -10
- crypticorn/trade/client/models/post_futures_action.py +16 -20
- crypticorn/trade/client/models/strategy_exchange_info.py +16 -15
- crypticorn/trade/client/models/strategy_model_input.py +33 -61
- crypticorn/trade/client/models/strategy_model_output.py +33 -61
- crypticorn/trade/client/models/tpsl.py +25 -39
- crypticorn/trade/client/models/trading_action_type.py +11 -9
- crypticorn/trade/client/models/validation_error.py +18 -24
- crypticorn/trade/client/models/validation_error_loc_inner.py +16 -37
- crypticorn/trade/client/rest.py +38 -23
- {crypticorn-2.4.5.dist-info → crypticorn-2.4.7.dist-info}/METADATA +13 -2
- {crypticorn-2.4.5.dist-info → crypticorn-2.4.7.dist-info}/RECORD +65 -61
- {crypticorn-2.4.5.dist-info → crypticorn-2.4.7.dist-info}/WHEEL +0 -0
- {crypticorn-2.4.5.dist-info → crypticorn-2.4.7.dist-info}/entry_points.txt +0 -0
- {crypticorn-2.4.5.dist-info → crypticorn-2.4.7.dist-info}/top_level.txt +0 -0
@@ -1,14 +1,14 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
|
3
3
|
"""
|
4
|
-
Trading API
|
4
|
+
Trading API
|
5
5
|
|
6
|
-
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 0.1.0
|
9
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
10
|
|
11
|
-
Do not edit the class manually.
|
11
|
+
Do not edit the class manually.
|
12
12
|
""" # noqa: E501
|
13
13
|
|
14
14
|
|
@@ -17,15 +17,7 @@ from inspect import getfullargspec
|
|
17
17
|
import json
|
18
18
|
import pprint
|
19
19
|
import re # noqa: F401
|
20
|
-
from pydantic import
|
21
|
-
BaseModel,
|
22
|
-
ConfigDict,
|
23
|
-
Field,
|
24
|
-
StrictInt,
|
25
|
-
StrictStr,
|
26
|
-
ValidationError,
|
27
|
-
field_validator,
|
28
|
-
)
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, ValidationError, field_validator
|
29
21
|
from typing import Optional
|
30
22
|
from typing import Union, Any, List, Set, TYPE_CHECKING, Optional, Dict
|
31
23
|
from typing_extensions import Literal, Self
|
@@ -33,7 +25,6 @@ from pydantic import Field
|
|
33
25
|
|
34
26
|
VALIDATIONERRORLOCINNER_ANY_OF_SCHEMAS = ["int", "str"]
|
35
27
|
|
36
|
-
|
37
28
|
class ValidationErrorLocInner(BaseModel):
|
38
29
|
"""
|
39
30
|
ValidationErrorLocInner
|
@@ -47,7 +38,7 @@ class ValidationErrorLocInner(BaseModel):
|
|
47
38
|
actual_instance: Optional[Union[int, str]] = None
|
48
39
|
else:
|
49
40
|
actual_instance: Any = None
|
50
|
-
any_of_schemas: Set[str] = {"int", "str"}
|
41
|
+
any_of_schemas: Set[str] = { "int", "str" }
|
51
42
|
|
52
43
|
model_config = {
|
53
44
|
"validate_assignment": True,
|
@@ -57,18 +48,14 @@ class ValidationErrorLocInner(BaseModel):
|
|
57
48
|
def __init__(self, *args, **kwargs) -> None:
|
58
49
|
if args:
|
59
50
|
if len(args) > 1:
|
60
|
-
raise ValueError(
|
61
|
-
"If a position argument is used, only 1 is allowed to set `actual_instance`"
|
62
|
-
)
|
51
|
+
raise ValueError("If a position argument is used, only 1 is allowed to set `actual_instance`")
|
63
52
|
if kwargs:
|
64
|
-
raise ValueError(
|
65
|
-
"If a position argument is used, keyword arguments cannot be used."
|
66
|
-
)
|
53
|
+
raise ValueError("If a position argument is used, keyword arguments cannot be used.")
|
67
54
|
super().__init__(actual_instance=args[0])
|
68
55
|
else:
|
69
56
|
super().__init__(**kwargs)
|
70
57
|
|
71
|
-
@field_validator(
|
58
|
+
@field_validator('actual_instance')
|
72
59
|
def actual_instance_must_validate_anyof(cls, v):
|
73
60
|
instance = ValidationErrorLocInner.model_construct()
|
74
61
|
error_messages = []
|
@@ -86,10 +73,7 @@ class ValidationErrorLocInner(BaseModel):
|
|
86
73
|
error_messages.append(str(e))
|
87
74
|
if error_messages:
|
88
75
|
# no match
|
89
|
-
raise ValueError(
|
90
|
-
"No match found when setting the actual_instance in ValidationErrorLocInner with anyOf schemas: int, str. Details: "
|
91
|
-
+ ", ".join(error_messages)
|
92
|
-
)
|
76
|
+
raise ValueError("No match found when setting the actual_instance in ValidationErrorLocInner with anyOf schemas: int, str. Details: " + ", ".join(error_messages))
|
93
77
|
else:
|
94
78
|
return v
|
95
79
|
|
@@ -123,10 +107,7 @@ class ValidationErrorLocInner(BaseModel):
|
|
123
107
|
|
124
108
|
if error_messages:
|
125
109
|
# no match
|
126
|
-
raise ValueError(
|
127
|
-
"No match found when deserializing the JSON string into ValidationErrorLocInner with anyOf schemas: int, str. Details: "
|
128
|
-
+ ", ".join(error_messages)
|
129
|
-
)
|
110
|
+
raise ValueError("No match found when deserializing the JSON string into ValidationErrorLocInner with anyOf schemas: int, str. Details: " + ", ".join(error_messages))
|
130
111
|
else:
|
131
112
|
return instance
|
132
113
|
|
@@ -135,9 +116,7 @@ class ValidationErrorLocInner(BaseModel):
|
|
135
116
|
if self.actual_instance is None:
|
136
117
|
return "null"
|
137
118
|
|
138
|
-
if hasattr(self.actual_instance, "to_json") and callable(
|
139
|
-
self.actual_instance.to_json
|
140
|
-
):
|
119
|
+
if hasattr(self.actual_instance, "to_json") and callable(self.actual_instance.to_json):
|
141
120
|
return self.actual_instance.to_json()
|
142
121
|
else:
|
143
122
|
return json.dumps(self.actual_instance)
|
@@ -147,9 +126,7 @@ class ValidationErrorLocInner(BaseModel):
|
|
147
126
|
if self.actual_instance is None:
|
148
127
|
return None
|
149
128
|
|
150
|
-
if hasattr(self.actual_instance, "to_dict") and callable(
|
151
|
-
self.actual_instance.to_dict
|
152
|
-
):
|
129
|
+
if hasattr(self.actual_instance, "to_dict") and callable(self.actual_instance.to_dict):
|
153
130
|
return self.actual_instance.to_dict()
|
154
131
|
else:
|
155
132
|
return self.actual_instance
|
@@ -157,3 +134,5 @@ class ValidationErrorLocInner(BaseModel):
|
|
157
134
|
def to_str(self) -> str:
|
158
135
|
"""Returns the string representation of the actual instance"""
|
159
136
|
return pprint.pformat(self.model_dump())
|
137
|
+
|
138
|
+
|
crypticorn/trade/client/rest.py
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
|
3
3
|
"""
|
4
|
-
Trading API
|
4
|
+
Trading API
|
5
5
|
|
6
|
-
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 0.1.0
|
9
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
10
|
|
11
|
-
Do not edit the class manually.
|
11
|
+
Do not edit the class manually.
|
12
12
|
""" # noqa: E501
|
13
13
|
|
14
14
|
|
@@ -25,8 +25,7 @@ from crypticorn.trade.client.exceptions import ApiException, ApiValueError
|
|
25
25
|
|
26
26
|
RESTResponseType = aiohttp.ClientResponse
|
27
27
|
|
28
|
-
ALLOW_RETRY_METHODS = frozenset({
|
29
|
-
|
28
|
+
ALLOW_RETRY_METHODS = frozenset({'DELETE', 'GET', 'HEAD', 'OPTIONS', 'PUT', 'TRACE'})
|
30
29
|
|
31
30
|
class RESTResponse(io.IOBase):
|
32
31
|
|
@@ -91,7 +90,7 @@ class RESTClientObject:
|
|
91
90
|
headers=None,
|
92
91
|
body=None,
|
93
92
|
post_params=None,
|
94
|
-
_request_timeout=None
|
93
|
+
_request_timeout=None
|
95
94
|
):
|
96
95
|
"""Execute request
|
97
96
|
|
@@ -108,7 +107,15 @@ class RESTClientObject:
|
|
108
107
|
(connection, read) timeouts.
|
109
108
|
"""
|
110
109
|
method = method.upper()
|
111
|
-
assert method in [
|
110
|
+
assert method in [
|
111
|
+
'GET',
|
112
|
+
'HEAD',
|
113
|
+
'DELETE',
|
114
|
+
'POST',
|
115
|
+
'PUT',
|
116
|
+
'PATCH',
|
117
|
+
'OPTIONS'
|
118
|
+
]
|
112
119
|
|
113
120
|
if post_params and body:
|
114
121
|
raise ApiValueError(
|
@@ -120,10 +127,15 @@ class RESTClientObject:
|
|
120
127
|
# url already contains the URL query string
|
121
128
|
timeout = _request_timeout or 5 * 60
|
122
129
|
|
123
|
-
if
|
124
|
-
headers[
|
130
|
+
if 'Content-Type' not in headers:
|
131
|
+
headers['Content-Type'] = 'application/json'
|
125
132
|
|
126
|
-
args = {
|
133
|
+
args = {
|
134
|
+
"method": method,
|
135
|
+
"url": url,
|
136
|
+
"timeout": timeout,
|
137
|
+
"headers": headers
|
138
|
+
}
|
127
139
|
|
128
140
|
if self.proxy:
|
129
141
|
args["proxy"] = self.proxy
|
@@ -131,22 +143,27 @@ class RESTClientObject:
|
|
131
143
|
args["proxy_headers"] = self.proxy_headers
|
132
144
|
|
133
145
|
# For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
|
134
|
-
if method in [
|
135
|
-
if re.search(
|
146
|
+
if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
|
147
|
+
if re.search('json', headers['Content-Type'], re.IGNORECASE):
|
136
148
|
if body is not None:
|
137
149
|
body = json.dumps(body)
|
138
150
|
args["data"] = body
|
139
|
-
elif headers[
|
151
|
+
elif headers['Content-Type'] == 'application/x-www-form-urlencoded':
|
140
152
|
args["data"] = aiohttp.FormData(post_params)
|
141
|
-
elif headers[
|
153
|
+
elif headers['Content-Type'] == 'multipart/form-data':
|
142
154
|
# must del headers['Content-Type'], or the correct
|
143
155
|
# Content-Type which generated by aiohttp
|
144
|
-
del headers[
|
156
|
+
del headers['Content-Type']
|
145
157
|
data = aiohttp.FormData()
|
146
158
|
for param in post_params:
|
147
159
|
k, v = param
|
148
160
|
if isinstance(v, tuple) and len(v) == 3:
|
149
|
-
data.add_field(
|
161
|
+
data.add_field(
|
162
|
+
k,
|
163
|
+
value=v[1],
|
164
|
+
filename=v[0],
|
165
|
+
content_type=v[2]
|
166
|
+
)
|
150
167
|
else:
|
151
168
|
# Ensures that dict objects are serialized
|
152
169
|
if isinstance(v, dict):
|
@@ -173,9 +190,7 @@ class RESTClientObject:
|
|
173
190
|
# https pool manager
|
174
191
|
if self.pool_manager is None:
|
175
192
|
self.pool_manager = aiohttp.ClientSession(
|
176
|
-
connector=aiohttp.TCPConnector(
|
177
|
-
limit=self.maxsize, ssl=self.ssl_context
|
178
|
-
),
|
193
|
+
connector=aiohttp.TCPConnector(limit=self.maxsize, ssl=self.ssl_context),
|
179
194
|
trust_env=True,
|
180
195
|
)
|
181
196
|
pool_manager = self.pool_manager
|
@@ -188,8 +203,8 @@ class RESTClientObject:
|
|
188
203
|
attempts=self.retries,
|
189
204
|
factor=2.0,
|
190
205
|
start_timeout=0.1,
|
191
|
-
max_timeout=120.0
|
192
|
-
)
|
206
|
+
max_timeout=120.0
|
207
|
+
)
|
193
208
|
)
|
194
209
|
pool_manager = self.retry_client
|
195
210
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: crypticorn
|
3
|
-
Version: 2.4.
|
3
|
+
Version: 2.4.7
|
4
4
|
Summary: Maximise Your Crypto Trading Profits with AI Predictions
|
5
5
|
Author-email: Crypticorn <timon@crypticorn.com>
|
6
6
|
Project-URL: Homepage, https://crypticorn.com
|
@@ -21,19 +21,23 @@ Requires-Dist: aiohttp<4.0.0,>=3.8.4
|
|
21
21
|
Requires-Dist: aiohttp-retry<3.0.0,>=2.8.3
|
22
22
|
Requires-Dist: pydantic<3.0.0,>=2.0.0
|
23
23
|
Requires-Dist: typing-extensions<5.0.0,>=4.7.1
|
24
|
-
Requires-Dist: pandas<3.0.0,>=2.2.0
|
25
24
|
Requires-Dist: requests<3.0.0,>=2.32.0
|
26
25
|
Requires-Dist: tqdm<5.0.0,>=4.67.0
|
27
26
|
Provides-Extra: dev
|
28
27
|
Requires-Dist: streamlit; extra == "dev"
|
29
28
|
Requires-Dist: httpx; extra == "dev"
|
30
29
|
Requires-Dist: black; extra == "dev"
|
30
|
+
Requires-Dist: ruff; extra == "dev"
|
31
|
+
Requires-Dist: isort; extra == "dev"
|
32
|
+
Requires-Dist: mypy; extra == "dev"
|
31
33
|
Requires-Dist: openapi-generator-cli<8.0.0,>=7.12.0; extra == "dev"
|
32
34
|
Provides-Extra: test
|
33
35
|
Requires-Dist: pytest==8.3.5; extra == "test"
|
34
36
|
Requires-Dist: pytest-asyncio==0.26.0; extra == "test"
|
35
37
|
Requires-Dist: pytest-cov==6.1.1; extra == "test"
|
36
38
|
Requires-Dist: python-dotenv==1.0.1; extra == "test"
|
39
|
+
Provides-Extra: extra
|
40
|
+
Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "extra"
|
37
41
|
|
38
42
|
# What is Crypticorn?
|
39
43
|
|
@@ -49,6 +53,8 @@ cryptocurrency market.
|
|
49
53
|
|
50
54
|
## Installation
|
51
55
|
|
56
|
+
>Python 3.10+ required
|
57
|
+
|
52
58
|
You can install the latest stable version from PyPi:
|
53
59
|
```bash
|
54
60
|
pip install crypticorn
|
@@ -95,7 +101,12 @@ client = ApiClient(base_url=BaseUrl.Prod, api_key="your-api-key")
|
|
95
101
|
asyncio.run(client.pay.models.get_products())
|
96
102
|
asyncio.run(client.close())
|
97
103
|
```
|
104
|
+
...or wrapped in a function
|
105
|
+
async def main():
|
106
|
+
await client.pay.products.get_products()
|
98
107
|
|
108
|
+
asyncio.run(main())
|
109
|
+
asyncio.run(client.close())
|
99
110
|
## Response Types
|
100
111
|
|
101
112
|
There are three different available output formats you can choose from:
|
@@ -1,5 +1,5 @@
|
|
1
1
|
crypticorn/__init__.py,sha256=TL41V09dmtbd2ee07wmOuG9KJJpyvLMPJi5DEd9bDyU,129
|
2
|
-
crypticorn/client.py,sha256=
|
2
|
+
crypticorn/client.py,sha256=iaik7Ddy04oF8XW3Rh_Knn4LDx3XeJP5ZMefFol68EM,5001
|
3
3
|
crypticorn/auth/__init__.py,sha256=JAl1tBLK9pYLr_-YKaj581c-c94PWLoqnatTIVAVvMM,81
|
4
4
|
crypticorn/auth/main.py,sha256=1ggu7V--I43TLWu2TLFRSnQmtaJEs8C8FbSXycCdvkI,686
|
5
5
|
crypticorn/auth/client/__init__.py,sha256=Xda54fgvIunmwHy8CeOI_L3LJxQJ6qcoN3HQ24zIPxo,4970
|
@@ -60,14 +60,14 @@ crypticorn/cli/init.py,sha256=hwiu3kOuWVNYNwy9bIhYGCgf6w0kPtimRXUXoNqM-IE,3429
|
|
60
60
|
crypticorn/cli/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
61
61
|
crypticorn/cli/templates/auth.py,sha256=Q1TxlA7qzhjvrqp1xz1aV2vGnj3DKFNN-VSl3o0B-dI,983
|
62
62
|
crypticorn/common/__init__.py,sha256=7DCYhqkqmzCyACdLWn3GuhccBcx5jQcwlIsl_cCr7gM,269
|
63
|
-
crypticorn/common/auth.py,sha256=
|
63
|
+
crypticorn/common/auth.py,sha256=VHJNJEDpJGsusQPeEN3FQDDYz3WN2TZ2WetSXqCaZfI,7565
|
64
64
|
crypticorn/common/enums.py,sha256=6cCwQZVdXUoN33WA8kSf4LeSZyExZcWO2ahSsgGddCs,1243
|
65
|
-
crypticorn/common/errors.py,sha256=
|
65
|
+
crypticorn/common/errors.py,sha256=LyX32A8Bgl20DrQmeUOPYYp1KIj4uRjvha4VyTFZm0A,20102
|
66
66
|
crypticorn/common/pydantic.py,sha256=pmnGYCIrLv59wZkDbvPyK9NJmgPJWW74LXTdIWSjOkY,1063
|
67
|
-
crypticorn/common/scopes.py,sha256=
|
67
|
+
crypticorn/common/scopes.py,sha256=MgH9sGodJfPjEqVtFsaczNmwEaGL2wuGzeTpga_ehXs,2407
|
68
68
|
crypticorn/common/sorter.py,sha256=keRRp4u7KJk3nS2A8tMdSF8Hbc1jcsre8KdTVuetfGc,1278
|
69
69
|
crypticorn/common/urls.py,sha256=X557WaODUqW2dECi-mOjTbmhkSpnp40fPXDdvlnBXfo,805
|
70
|
-
crypticorn/common/utils.py,sha256=
|
70
|
+
crypticorn/common/utils.py,sha256=TonfbX7PdlLekjda5nM4EstTCCu9T1hoW_TGGirXUjc,1939
|
71
71
|
crypticorn/hive/__init__.py,sha256=hRfTlEzEql4msytdUC_04vfaHzVKG5CGZle1M-9QFgY,81
|
72
72
|
crypticorn/hive/main.py,sha256=U4wurkxnKai2i7iiq049ah9nVzBxmexRxBdFIWfd9qE,631
|
73
73
|
crypticorn/hive/client/__init__.py,sha256=b4XBX-fBb0vVHY6323ADasKFSbL66UDeUi0aV3-aNj8,2376
|
@@ -101,7 +101,7 @@ crypticorn/hive/client/models/target_type.py,sha256=rv9ub_0BM5DAR8jtGAZKbTO7RObE
|
|
101
101
|
crypticorn/hive/client/models/validation_error.py,sha256=CHRYCMcCRjt3ylBorHFBN7Q-Brn72fcn_c2-L8Q9zK8,3146
|
102
102
|
crypticorn/hive/client/models/validation_error_loc_inner.py,sha256=bpciQHI2dsFuFT2ZUyiS7ez9kjnt_YP0IQnQdYDCoyI,5050
|
103
103
|
crypticorn/klines/__init__.py,sha256=9UUW013uZ5x4evz5zRUxbNid-6O9WAPPYvPZIHpAwms,87
|
104
|
-
crypticorn/klines/main.py,sha256=
|
104
|
+
crypticorn/klines/main.py,sha256=4iOgdRqByTeHrnRVwW5eLQKm9HITIVt11jLPQK9b1-A,2027
|
105
105
|
crypticorn/klines/client/__init__.py,sha256=N0UnLoAQhh4m2_g4pn-hRSABYv8H_Mx54_fu1p0cLp0,3770
|
106
106
|
crypticorn/klines/client/api_client.py,sha256=9wWG0brcoDWWeBHXuTMTUqvbSYX6tX5kuf7sBreQAsw,27110
|
107
107
|
crypticorn/klines/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
@@ -142,7 +142,7 @@ crypticorn/klines/client/models/udf_config_response.py,sha256=7CDUucdc3OmsMWEFeW
|
|
142
142
|
crypticorn/klines/client/models/validation_error.py,sha256=1TFg0Od5eoiksrEOQHPGQMsG9KxtbiEHfFc-Fd6z9kU,3484
|
143
143
|
crypticorn/klines/client/models/validation_error_loc_inner.py,sha256=WGQs_4K95Oag8b82FVNEb1IMrF8xBFfTZ_bXUWT-OoA,5386
|
144
144
|
crypticorn/metrics/__init__.py,sha256=t7FrHV5PaVTka90eIxDgOaWvOiyznSStcUanSbLov2o,126
|
145
|
-
crypticorn/metrics/main.py,sha256=
|
145
|
+
crypticorn/metrics/main.py,sha256=9exx9x-XXr2y-qu8Pv_HuwtnHvm8t8C8NcKy9FDnC7s,3278
|
146
146
|
crypticorn/metrics/client/__init__.py,sha256=P5JhBky8Izm4af8FPca8lbayVFavDFAyLWsN7IBil1M,2929
|
147
147
|
crypticorn/metrics/client/api_client.py,sha256=7fXTuDKN8PwEXB1oiHTxQei0gNXbon6alzAa-QYFkw4,27114
|
148
148
|
crypticorn/metrics/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
@@ -165,19 +165,19 @@ crypticorn/metrics/client/models/base_response_list_dict.py,sha256=8_RJ-T7c2TTsW
|
|
165
165
|
crypticorn/metrics/client/models/base_response_list_exchange_mapping.py,sha256=WTgCZMBuRtdJkFozp5nmY0sBvGwZfNGWfteVI5ryjkA,4140
|
166
166
|
crypticorn/metrics/client/models/base_response_list_str.py,sha256=CiC2L4KwEfx4MhJjmhJHq6MC6awi1eM_ZHLK_uoz1FY,3535
|
167
167
|
crypticorn/metrics/client/models/error_response.py,sha256=kCwi5tas3eskJLsCu-YKWAitUD6nJtYLGmf_GSXoNns,3448
|
168
|
-
crypticorn/metrics/client/models/exchange_mapping.py,sha256=
|
168
|
+
crypticorn/metrics/client/models/exchange_mapping.py,sha256=noWjAm9V5TStmydDymleIhweVSszBJIEcCM4SEGc1YE,4498
|
169
169
|
crypticorn/metrics/client/models/health_check_response.py,sha256=Zs0x3q6VVBaZZZVShhtZvcSfxQoOsNLzT44VeDUEOak,2930
|
170
170
|
crypticorn/metrics/client/models/http_validation_error.py,sha256=kSD68KR46dJsvbvL1EbS4pMbkbH40gzSHbH0OBQad74,3266
|
171
171
|
crypticorn/metrics/client/models/market.py,sha256=yjCIMjIRqCW-81qoXnm3aWle0BNPrpsmepZk-UFS6ow,877
|
172
172
|
crypticorn/metrics/client/models/market_type.py,sha256=1xegIZVAcwb3UtMMXzhXdFxAxoHMVVf0OjBCNCdzenE,891
|
173
173
|
crypticorn/metrics/client/models/severity.py,sha256=AX81o6p2zjPDe1KZEwB5cQiScBm2BnKUEy0zDMLUNxQ,911
|
174
174
|
crypticorn/metrics/client/models/time_interval.py,sha256=Y2B7IhTJka5-e0zkKoH3xIaF-9_LVyrDhqxl6wv-Vmw,952
|
175
|
-
crypticorn/metrics/client/models/trading_status.py,sha256=
|
175
|
+
crypticorn/metrics/client/models/trading_status.py,sha256=Eek1P0zGrUib9VE1AaeSYna8eG0V_N1gQG-O8H3hV-0,926
|
176
176
|
crypticorn/metrics/client/models/validation_error.py,sha256=XAkAm1zTjroJLvnmQB6rUJq7tgWwhMYjqGukqMMJRmM,3376
|
177
177
|
crypticorn/metrics/client/models/validation_error_loc_inner.py,sha256=p0a-GosxsFHZV22hz3u4PNwj0kPd8-7CWRNwAO05pvk,5277
|
178
178
|
crypticorn/pay/__init__.py,sha256=ux-B-YbNetpTlZTb2fijuGUOEmSm4IB0fYtieGnVDBg,78
|
179
179
|
crypticorn/pay/main.py,sha256=6sCELtBpQglCDpHlOtCMfWct_itCNv9QZCeumZI22A0,601
|
180
|
-
crypticorn/pay/client/__init__.py,sha256=
|
180
|
+
crypticorn/pay/client/__init__.py,sha256=TH8EdKCLJEwTTolbAwieP9yJFpIOA890ag5PRg4WHwI,2465
|
181
181
|
crypticorn/pay/client/api_client.py,sha256=axhwIXY3gZod8xn8BCHjA-8v-wnyyHrxV5TxcMFqjVA,26924
|
182
182
|
crypticorn/pay/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
183
183
|
crypticorn/pay/client/configuration.py,sha256=3OBBS0Q5lthyqgjRpAssw_fJStRpzsd39PUpyg7OQfM,19164
|
@@ -186,10 +186,10 @@ crypticorn/pay/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
186
186
|
crypticorn/pay/client/rest.py,sha256=q0P8SwRU9kXGGOaeJJjYx8JSyPU_KlO1XSZ5t8G0Nn8,7035
|
187
187
|
crypticorn/pay/client/api/__init__.py,sha256=vbisPmBd4c5G3_MHAlInKeu1obSr8witdtwxC43BnN8,302
|
188
188
|
crypticorn/pay/client/api/now_payments_api.py,sha256=nbTM9vqDwf5OgGIT3Fsg84AoTCCWLAnSwpOz3S9N18Q,33011
|
189
|
-
crypticorn/pay/client/api/payments_api.py,sha256=
|
190
|
-
crypticorn/pay/client/api/products_api.py,sha256=
|
189
|
+
crypticorn/pay/client/api/payments_api.py,sha256=Nprz9wnXMmYzpKdPxtmr9vPrWm9qyS1ucr3YHSZvrls,34252
|
190
|
+
crypticorn/pay/client/api/products_api.py,sha256=Av_LkSXFihzoaDDmX7LVqjvHY_Hw0e4jqLNkHm1Tf_0,34018
|
191
191
|
crypticorn/pay/client/api/status_api.py,sha256=XSfwyUDRS3XMB8mfngLhtYqEFMOE2t6m_PAWcwX9eg0,9908
|
192
|
-
crypticorn/pay/client/models/__init__.py,sha256
|
192
|
+
crypticorn/pay/client/models/__init__.py,sha256=ByKifb8yOXhBLZIncvKdj5JZgtQkpIbC5uFn-1fjWd0,1603
|
193
193
|
crypticorn/pay/client/models/api_status_res.py,sha256=2MSDgnzQZpQyjFu7I-4HkJI3ygy0Dzs1lPdvgzM63Jg,2494
|
194
194
|
crypticorn/pay/client/models/body_create_now_invoice.py,sha256=F--oFNyB0bv2mmFpwd3jG9ZGEl0Ip7slVFdSkxbVbe8,3045
|
195
195
|
crypticorn/pay/client/models/body_create_product.py,sha256=_Jh3LqwcC8U3Rz14NP6Aohimea7d3TsrSWTexm5iB5Q,3030
|
@@ -216,11 +216,15 @@ crypticorn/pay/client/models/now_payment_model.py,sha256=TbQLShcgKkF2AYRN9eAU5k6
|
|
216
216
|
crypticorn/pay/client/models/now_payment_status.py,sha256=D74hYmRztyg9V6V79K3eK34eGE7KKVT2vdCgzqAlEmA,955
|
217
217
|
crypticorn/pay/client/models/now_webhook_payload.py,sha256=6Fb2eW1w53ahNNCIXJWWK12XuD9B2t-_P_8vhqDy-Ng,6773
|
218
218
|
crypticorn/pay/client/models/partial_product_update_model.py,sha256=TIKIwGlTOT37fj0vnY3lcA_3wTlzHgFzR5141vxm-I8,4805
|
219
|
-
crypticorn/pay/client/models/payment.py,sha256=
|
219
|
+
crypticorn/pay/client/models/payment.py,sha256=CGpAkuK-gZR54fi-D35hEmUKvozumDSWCp7ks_9Le04,3585
|
220
220
|
crypticorn/pay/client/models/payment_status.py,sha256=X27W1roil70iUNkcJVKABK1dRpAUoNPa-ms8XJniGkI,877
|
221
221
|
crypticorn/pay/client/models/product.py,sha256=6_L59YIz-rdN5fHypJUcRpaU-hpG1l4xF1Cl2n8sF0k,2572
|
222
|
+
crypticorn/pay/client/models/product_create.py,sha256=D4_nazTIXavIxut2qTMWik4hvLS3eIq2bTvEwynzPPI,3597
|
222
223
|
crypticorn/pay/client/models/product_model.py,sha256=emo_bZGfI9k3dtR_jfzlJGFUTR1SZosLRfkaObj3J6g,3855
|
224
|
+
crypticorn/pay/client/models/product_read.py,sha256=RH4K8DFHYKdA2w3EVtGriJ_4N64YsHqhzWakUrByx-E,3701
|
225
|
+
crypticorn/pay/client/models/product_sub_read.py,sha256=-5lPLN2PmLIqQcMy2ziCyMZu2VEu_5vHnZ_bPEuMUcY,3210
|
223
226
|
crypticorn/pay/client/models/product_subs_model.py,sha256=DeeVu-8aDJneHov97hlNR4JFph_jGu2yt9_eVTPWzpw,3355
|
227
|
+
crypticorn/pay/client/models/product_update.py,sha256=gMnHofo6JaWR53sN7WHa70tbQsfAZah_-cWHkEoD2LM,4495
|
224
228
|
crypticorn/pay/client/models/product_update_model.py,sha256=j6EGDSqko5owqk-Qrx_9fh1mQQB87welVhCBmDkWcS0,4777
|
225
229
|
crypticorn/pay/client/models/scope.py,sha256=RQ6j1jQfNiu1CVnh_LMoAGSeunaXyISMgU-naCncBQw,2033
|
226
230
|
crypticorn/pay/client/models/services.py,sha256=GSR4E0IVNzmMkPW6AdhW9MmHFmku0YBfx27xWzAFDGI,709
|
@@ -229,52 +233,52 @@ crypticorn/pay/client/models/validation_error.py,sha256=dEYMLbX_N7IfQLeuL-BRBVnh
|
|
229
233
|
crypticorn/pay/client/models/validation_error_loc_inner.py,sha256=IJ4KtMiRfkAv1ymgH2H4mjCfQWmvMPc04C5ARvRSYz4,5111
|
230
234
|
crypticorn/trade/__init__.py,sha256=QzScH9n-ly3QSaBSpPP7EqYwhdzDqYCZJs0-AhEhrsY,84
|
231
235
|
crypticorn/trade/main.py,sha256=jn17PsnMp_xKuYic92u2ApytvT71au1cBse5TjgRQdM,1040
|
232
|
-
crypticorn/trade/client/__init__.py,sha256=
|
233
|
-
crypticorn/trade/client/api_client.py,sha256=
|
234
|
-
crypticorn/trade/client/api_response.py,sha256=
|
235
|
-
crypticorn/trade/client/configuration.py,sha256=
|
236
|
-
crypticorn/trade/client/exceptions.py,sha256=
|
236
|
+
crypticorn/trade/client/__init__.py,sha256=4nen4oNaWdQ7M9Yk5d2Kc19Ztu3bUQ_2JOuonV8cO-U,3481
|
237
|
+
crypticorn/trade/client/api_client.py,sha256=kNDJKP1lZNlAi5ZfST12AUnzoHZTVmySo9I_6yWjHPA,27639
|
238
|
+
crypticorn/trade/client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
239
|
+
crypticorn/trade/client/configuration.py,sha256=Lz10vaGfooPSU6h1i1qYbVYDenUrQDfrB5i7EGvleGA,18920
|
240
|
+
crypticorn/trade/client/exceptions.py,sha256=e-5wCf81XX5sSLMUdBKnpxKSuqxaH9kYjzjZ8WhVimM,6475
|
237
241
|
crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
-
crypticorn/trade/client/rest.py,sha256=
|
239
|
-
crypticorn/trade/client/api/__init__.py,sha256=
|
240
|
-
crypticorn/trade/client/api/api_keys_api.py,sha256=
|
241
|
-
crypticorn/trade/client/api/bots_api.py,sha256=
|
242
|
-
crypticorn/trade/client/api/exchanges_api.py,sha256=
|
243
|
-
crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=
|
244
|
-
crypticorn/trade/client/api/notifications_api.py,sha256=
|
245
|
-
crypticorn/trade/client/api/orders_api.py,sha256=
|
246
|
-
crypticorn/trade/client/api/status_api.py,sha256=
|
247
|
-
crypticorn/trade/client/api/strategies_api.py,sha256=
|
248
|
-
crypticorn/trade/client/api/trading_actions_api.py,sha256=-
|
249
|
-
crypticorn/trade/client/models/__init__.py,sha256=
|
250
|
-
crypticorn/trade/client/models/action_model.py,sha256=
|
251
|
-
crypticorn/trade/client/models/api_error_identifier.py,sha256=
|
252
|
-
crypticorn/trade/client/models/api_error_level.py,sha256=
|
253
|
-
crypticorn/trade/client/models/api_error_type.py,sha256=
|
242
|
+
crypticorn/trade/client/rest.py,sha256=FXBdH7wZjvR2xmTvcYgX03KJi10YsBst6NQWYxBLdFM,7305
|
243
|
+
crypticorn/trade/client/api/__init__.py,sha256=s0PaWLA2MkjhypdxW0p_cb5Oxr3Bsds-3-x2HMA9Gtk,669
|
244
|
+
crypticorn/trade/client/api/api_keys_api.py,sha256=EOHCe6nXyM1hfLISp4LdrPysHcNrTo5UL7f2LNkDO9M,52450
|
245
|
+
crypticorn/trade/client/api/bots_api.py,sha256=mOKSf4Xb2NjEBZ9ggCMkSqXjeMTDfaA0aCHGSCg1SOI,42886
|
246
|
+
crypticorn/trade/client/api/exchanges_api.py,sha256=cSLOE0Ji5J1xuKT1SDqfoe4N4v0tDfq1P0guH3KFZbc,10330
|
247
|
+
crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=SzKXLbuGwF-XP01Sd3T2t8xJss7Bm6OjH-tixrdvX0E,51630
|
248
|
+
crypticorn/trade/client/api/notifications_api.py,sha256=46U-0SlSFUN9PgXK0m__YhLLsyQASFsCmpOm7RHpN3c,62655
|
249
|
+
crypticorn/trade/client/api/orders_api.py,sha256=nBF1ln9b5BHOJ8NphYWhDzr-ziDStm3N0Idn0OZjHK8,11429
|
250
|
+
crypticorn/trade/client/api/status_api.py,sha256=AM34OwkB0lo2bTgFLEV4eT5rHCSLkSS4LvfTNY9V8r0,10072
|
251
|
+
crypticorn/trade/client/api/strategies_api.py,sha256=8HPlCQou17FhMo45Lwd-yVsr3axSSHHxyoEZKJkbCXw,43318
|
252
|
+
crypticorn/trade/client/api/trading_actions_api.py,sha256=-u9obXh6w2GuCsLRf22cLBJk_4JE5MnfoQkjMt03iyY,33086
|
253
|
+
crypticorn/trade/client/models/__init__.py,sha256=LuuQE7ahoNxCeqzVXRBvToKJPANanQgUooUTH3FhkEs,2235
|
254
|
+
crypticorn/trade/client/models/action_model.py,sha256=Kab9KchjrLzb2OgTH_g-cAxb_rMfIQbjW9Ripwd3QsY,9487
|
255
|
+
crypticorn/trade/client/models/api_error_identifier.py,sha256=uzBZaGbP8tie6yIgoVCmB7vZK37l1aJq-9OVUFRHyu4,4446
|
256
|
+
crypticorn/trade/client/models/api_error_level.py,sha256=wbZSxh4t4mCEwLRbQXCbf4Vvi9Fhf80rdVwZ6UxufJM,801
|
257
|
+
crypticorn/trade/client/models/api_error_type.py,sha256=ueNfViPSAsUUWoeGkFQkTZ_ktApTnhkJrYlHauLuQBs,842
|
254
258
|
crypticorn/trade/client/models/api_key_model.py,sha256=6VPDVA-czB5SSjE7ojXwJ_4OReHn3VPcWtsx0fxjNok,5261
|
255
|
-
crypticorn/trade/client/models/bot_model.py,sha256=
|
256
|
-
crypticorn/trade/client/models/bot_status.py,sha256=
|
257
|
-
crypticorn/trade/client/models/exchange.py,sha256=
|
258
|
-
crypticorn/trade/client/models/exchange_key_model.py,sha256=
|
259
|
-
crypticorn/trade/client/models/execution_ids.py,sha256=
|
260
|
-
crypticorn/trade/client/models/futures_balance.py,sha256=
|
261
|
-
crypticorn/trade/client/models/futures_trading_action.py,sha256=
|
262
|
-
crypticorn/trade/client/models/http_validation_error.py,sha256=
|
263
|
-
crypticorn/trade/client/models/margin_mode.py,sha256=
|
264
|
-
crypticorn/trade/client/models/market_type.py,sha256=
|
265
|
-
crypticorn/trade/client/models/notification_model.py,sha256=
|
266
|
-
crypticorn/trade/client/models/order_model.py,sha256=
|
267
|
-
crypticorn/trade/client/models/order_status.py,sha256=
|
268
|
-
crypticorn/trade/client/models/post_futures_action.py,sha256=
|
269
|
-
crypticorn/trade/client/models/strategy_exchange_info.py,sha256=
|
270
|
-
crypticorn/trade/client/models/strategy_model_input.py,sha256=
|
271
|
-
crypticorn/trade/client/models/strategy_model_output.py,sha256=
|
272
|
-
crypticorn/trade/client/models/tpsl.py,sha256=
|
273
|
-
crypticorn/trade/client/models/trading_action_type.py,sha256=
|
274
|
-
crypticorn/trade/client/models/validation_error.py,sha256=
|
275
|
-
crypticorn/trade/client/models/validation_error_loc_inner.py,sha256=
|
276
|
-
crypticorn-2.4.
|
277
|
-
crypticorn-2.4.
|
278
|
-
crypticorn-2.4.
|
279
|
-
crypticorn-2.4.
|
280
|
-
crypticorn-2.4.
|
259
|
+
crypticorn/trade/client/models/bot_model.py,sha256=WjXDlpfOZS0ji5RMNTbzNtz481PT9_RCTohLJBnLa6c,5620
|
260
|
+
crypticorn/trade/client/models/bot_status.py,sha256=aFI-WCTlNbeYY4HkCFzEHVbSFfucqa5DUE_ZxvG4AXs,798
|
261
|
+
crypticorn/trade/client/models/exchange.py,sha256=DbTMElcfUFUWXcvrgbI7oIm5x6Vas-qkUIhjJDjWIZs,762
|
262
|
+
crypticorn/trade/client/models/exchange_key_model.py,sha256=tG81YbRJhGmzINnZ6J-6uKUEYTe-LkUd52H3HwF_3k8,5216
|
263
|
+
crypticorn/trade/client/models/execution_ids.py,sha256=Y-wvG0N8qSh85SubzzShtqPSjhySruazUewxprbbuNY,2984
|
264
|
+
crypticorn/trade/client/models/futures_balance.py,sha256=IzGHnQUoQsDqwltFdUaAd1HMOAD0ag4foQjnyRPiIs0,4016
|
265
|
+
crypticorn/trade/client/models/futures_trading_action.py,sha256=82ZgoypQpF_QW-PAOd6llXQKfhkbhQ0ZjeghLuJ82zk,8878
|
266
|
+
crypticorn/trade/client/models/http_validation_error.py,sha256=JheELv58H7ulOV8BEFUsVi41r8WtFtQSWyovqwZZ81s,3017
|
267
|
+
crypticorn/trade/client/models/margin_mode.py,sha256=MHnYjbIsfhWDzAcBXCWtD41RoFHQKlWpVv5foCRXxHs,769
|
268
|
+
crypticorn/trade/client/models/market_type.py,sha256=VUvVxMAkgIsDUhjYNEwtXnkHmzBz2yG_HwAeXo97HDA,747
|
269
|
+
crypticorn/trade/client/models/notification_model.py,sha256=A56wuLfH3Uj7UFFR-jV7mUmm7RwZz7LRaT7pLfsgdlU,4807
|
270
|
+
crypticorn/trade/client/models/order_model.py,sha256=IkqVeFalr6L4vnXsg8cH_u4jKMSpViCaK1P2BwrEDDg,12167
|
271
|
+
crypticorn/trade/client/models/order_status.py,sha256=_RuPAv2VQ6rCVunDHZXrmHVD9qEnwY-6w3ue5c02Q8o,844
|
272
|
+
crypticorn/trade/client/models/post_futures_action.py,sha256=6CYQdFiFRjW0jelEEHh28OuZdj4KE2fJtQSXap0rJ68,3007
|
273
|
+
crypticorn/trade/client/models/strategy_exchange_info.py,sha256=3z450zqw7SQuOzHlkkTbXoHzT6Mq1Y0FRqPUSP24WeY,2838
|
274
|
+
crypticorn/trade/client/models/strategy_model_input.py,sha256=VL0-qt02VgZ0-lhMbKiUVu4ZRC4VGiFjZ1QkhkmKkxU,5435
|
275
|
+
crypticorn/trade/client/models/strategy_model_output.py,sha256=UMOnT0BaScGPXVoodX7MIj8Z3p9zrIcRx8AempXfWUM,5439
|
276
|
+
crypticorn/trade/client/models/tpsl.py,sha256=POTjKzLrj0jdLlB6aJmvbkU7RLwZw6VKfpj8yS6vf6E,4184
|
277
|
+
crypticorn/trade/client/models/trading_action_type.py,sha256=jgEnmZtexDKlcMro8j8qynp3ojHRGt6Qhzm496P8IxM,849
|
278
|
+
crypticorn/trade/client/models/validation_error.py,sha256=v-Ds2WpiDRt9HcuiId0qddVGXXbiSfAAuHoTIL5FivM,3109
|
279
|
+
crypticorn/trade/client/models/validation_error_loc_inner.py,sha256=7FNsojpC-Hy8s7bZ69PynxAhQaiIa9oqVBmE2JtmPbs,4889
|
280
|
+
crypticorn-2.4.7.dist-info/METADATA,sha256=IHslw816_vrUNCK8qw2K6GYJPleHagEMURj-eF2vRpU,6207
|
281
|
+
crypticorn-2.4.7.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
282
|
+
crypticorn-2.4.7.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
|
283
|
+
crypticorn-2.4.7.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
|
284
|
+
crypticorn-2.4.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|