crypticorn 2.16.0__py3-none-any.whl → 2.17.0rc2__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 (86) hide show
  1. crypticorn/__init__.py +2 -2
  2. crypticorn/auth/client/api/admin_api.py +415 -13
  3. crypticorn/auth/client/api/auth_api.py +2622 -113
  4. crypticorn/auth/client/api/service_api.py +258 -7
  5. crypticorn/auth/client/api/user_api.py +2485 -270
  6. crypticorn/auth/client/api/wallet_api.py +1518 -77
  7. crypticorn/auth/client/models/create_api_key_request.py +2 -1
  8. crypticorn/auth/client/models/get_api_keys200_response_inner.py +2 -1
  9. crypticorn/auth/client/rest.py +23 -4
  10. crypticorn/auth/main.py +8 -5
  11. crypticorn/client.py +227 -59
  12. crypticorn/common/__init__.py +1 -0
  13. crypticorn/common/metrics.py +18 -0
  14. crypticorn/common/middleware.py +46 -0
  15. crypticorn/common/pagination.py +137 -18
  16. crypticorn/common/router/admin_router.py +12 -2
  17. crypticorn/common/utils.py +2 -1
  18. crypticorn/common/warnings.py +7 -0
  19. crypticorn/hive/client/api/admin_api.py +1234 -51
  20. crypticorn/hive/client/api/data_api.py +517 -13
  21. crypticorn/hive/client/api/models_api.py +1657 -83
  22. crypticorn/hive/client/api/status_api.py +415 -13
  23. crypticorn/hive/client/models/api_error_identifier.py +1 -1
  24. crypticorn/hive/client/rest.py +23 -4
  25. crypticorn/hive/main.py +99 -25
  26. crypticorn/klines/client/api/admin_api.py +1234 -51
  27. crypticorn/klines/client/api/change_in_timeframe_api.py +278 -7
  28. crypticorn/klines/client/api/funding_rates_api.py +324 -7
  29. crypticorn/klines/client/api/ohlcv_data_api.py +399 -7
  30. crypticorn/klines/client/api/status_api.py +415 -13
  31. crypticorn/klines/client/api/symbols_api.py +225 -7
  32. crypticorn/klines/client/api/udf_api.py +1393 -120
  33. crypticorn/klines/client/models/api_error_identifier.py +3 -1
  34. crypticorn/klines/client/rest.py +23 -4
  35. crypticorn/klines/main.py +89 -12
  36. crypticorn/metrics/client/api/admin_api.py +1234 -51
  37. crypticorn/metrics/client/api/exchanges_api.py +1405 -140
  38. crypticorn/metrics/client/api/indicators_api.py +640 -13
  39. crypticorn/metrics/client/api/logs_api.py +305 -7
  40. crypticorn/metrics/client/api/marketcap_api.py +1240 -60
  41. crypticorn/metrics/client/api/markets_api.py +352 -7
  42. crypticorn/metrics/client/api/quote_currencies_api.py +237 -7
  43. crypticorn/metrics/client/api/status_api.py +415 -13
  44. crypticorn/metrics/client/api/tokens_api.py +400 -13
  45. crypticorn/metrics/client/configuration.py +4 -2
  46. crypticorn/metrics/client/rest.py +23 -4
  47. crypticorn/metrics/main.py +113 -19
  48. crypticorn/pay/client/api/admin_api.py +1720 -126
  49. crypticorn/pay/client/api/now_payments_api.py +1013 -42
  50. crypticorn/pay/client/api/payments_api.py +580 -13
  51. crypticorn/pay/client/api/products_api.py +915 -25
  52. crypticorn/pay/client/api/status_api.py +415 -13
  53. crypticorn/pay/client/configuration.py +2 -2
  54. crypticorn/pay/client/models/api_error_identifier.py +7 -7
  55. crypticorn/pay/client/models/scope.py +1 -0
  56. crypticorn/pay/client/rest.py +23 -4
  57. crypticorn/pay/main.py +10 -6
  58. crypticorn/trade/client/__init__.py +2 -1
  59. crypticorn/trade/client/api/__init__.py +0 -1
  60. crypticorn/trade/client/api/admin_api.py +1718 -123
  61. crypticorn/trade/client/api/api_keys_api.py +1596 -103
  62. crypticorn/trade/client/api/bots_api.py +1106 -47
  63. crypticorn/trade/client/api/exchanges_api.py +592 -19
  64. crypticorn/trade/client/api/notifications_api.py +1340 -112
  65. crypticorn/trade/client/api/orders_api.py +240 -7
  66. crypticorn/trade/client/api/status_api.py +415 -13
  67. crypticorn/trade/client/api/strategies_api.py +1170 -69
  68. crypticorn/trade/client/api/trading_actions_api.py +650 -19
  69. crypticorn/trade/client/models/__init__.py +2 -0
  70. crypticorn/trade/client/models/exchange.py +6 -1
  71. crypticorn/trade/client/models/exchange_key_balance.py +111 -0
  72. crypticorn/trade/client/models/futures_balance.py +27 -25
  73. crypticorn/trade/client/models/spot_balance.py +110 -0
  74. crypticorn/trade/client/models/strategy.py +5 -3
  75. crypticorn/trade/client/models/strategy_create.py +6 -4
  76. crypticorn/trade/client/models/strategy_exchange_info.py +16 -4
  77. crypticorn/trade/client/models/strategy_update.py +2 -2
  78. crypticorn/trade/client/rest.py +23 -4
  79. crypticorn/trade/main.py +15 -12
  80. {crypticorn-2.16.0.dist-info → crypticorn-2.17.0rc2.dist-info}/METADATA +65 -20
  81. {crypticorn-2.16.0.dist-info → crypticorn-2.17.0rc2.dist-info}/RECORD +85 -83
  82. crypticorn/trade/client/api/futures_trading_panel_api.py +0 -1285
  83. {crypticorn-2.16.0.dist-info → crypticorn-2.17.0rc2.dist-info}/WHEEL +0 -0
  84. {crypticorn-2.16.0.dist-info → crypticorn-2.17.0rc2.dist-info}/entry_points.txt +0 -0
  85. {crypticorn-2.16.0.dist-info → crypticorn-2.17.0rc2.dist-info}/licenses/LICENSE +0 -0
  86. {crypticorn-2.16.0.dist-info → crypticorn-2.17.0rc2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crypticorn
3
- Version: 2.16.0
3
+ Version: 2.17.0rc2
4
4
  Summary: Maximise Your Crypto Trading Profits with Machine Learning
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  License-Expression: MIT
@@ -25,6 +25,8 @@ Requires-Dist: click<9.0.0,>=8.0.0
25
25
  Requires-Dist: psutil<8.0.0,>=7.0.0
26
26
  Requires-Dist: setuptools<81.0.0,>=80.0.0
27
27
  Requires-Dist: strenum
28
+ Requires-Dist: prometheus-client<1.0.0,>=0.22.0
29
+ Requires-Dist: asgiref<4.0.0,>=3.6.0
28
30
  Requires-Dist: urllib3<3.0.0,>=1.25.3
29
31
  Requires-Dist: python_dateutil<3.0.0,>=2.8.2
30
32
  Requires-Dist: aiohttp<4.0.0,>=3.8.4
@@ -49,6 +51,7 @@ Requires-Dist: pytest-asyncio==0.26.0; extra == "test"
49
51
  Requires-Dist: pytest-cov==6.1.1; extra == "test"
50
52
  Requires-Dist: python-dotenv==1.0.1; extra == "test"
51
53
  Requires-Dist: PyJWT==2.10.0; extra == "test"
54
+ Requires-Dist: httpx>=0.27.0; extra == "test"
52
55
  Provides-Extra: extra
53
56
  Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "extra"
54
57
  Dynamic: license-file
@@ -78,11 +81,15 @@ You can install extra dependencies grouped in the extras `extra`, `dev` (develop
78
81
 
79
82
  ## Structure
80
83
 
81
- Our API is available as an asynchronous Python SDK. The main entry point you need is the `ApiClient` class, which you would import like this:
84
+ Our API is available as both an asynchronous and synchronous Python SDK. The main entry points are:
85
+
86
+ - `AsyncClient` - Asynchronous client for async/await usage
87
+ - `SyncClient` - Synchronous client for traditional blocking calls
88
+
82
89
  ```python
83
- from crypticorn import ApiClient
90
+ from crypticorn import AsyncClient, SyncClient
84
91
  ```
85
- The ApiClient serves as the central interface for API operations. It instantiates multiple API wrappers corresponding to our micro services. These are structured the following:
92
+ Both clients serve as the central interface for API operations and instantiate multiple API wrappers corresponding to our micro services. These are structured the following:
86
93
 
87
94
  <img src="static/pip-structure.svg" alt="pip package structure" />
88
95
 
@@ -110,20 +117,22 @@ There are scopes which don't follow this structure. Those are either scopes that
110
117
 
111
118
  ## Basic Usage
112
119
 
113
- You can use the client with the async context protocol...
120
+ ### Asynchronous Client
121
+
122
+ You can use the async client with the context manager protocol...
114
123
  ```python
115
- async with ApiClient(api_key="your-api-key") as client:
116
- await client.pay.products.get_products()
124
+ async with AsyncClient(api_key="your-api-key") as client:
125
+ await client.pay.products.get_products()
117
126
  ```
118
127
  ...or without it like this...
119
128
  ```python
120
- client = ApiClient(api_key="your-api-key")
121
- asyncio.run(client.pay.models.get_products())
129
+ client = AsyncClient(api_key="your-api-key")
130
+ asyncio.run(client.pay.products.get_products())
122
131
  asyncio.run(client.close())
123
132
  ```
124
133
  ...or this.
125
134
  ```python
126
- client = ApiClient(api_key="your-api-key")
135
+ client = AsyncClient(api_key="your-api-key")
127
136
 
128
137
  async def main():
129
138
  await client.pay.products.get_products()
@@ -132,6 +141,29 @@ asyncio.run(main())
132
141
  asyncio.run(client.close())
133
142
  ```
134
143
 
144
+ ### Synchronous Client
145
+
146
+ For traditional synchronous usage without async/await, use the `SyncClient`:
147
+
148
+ ```python
149
+ from crypticorn import SyncClient
150
+
151
+ # With context manager (recommended)
152
+ with SyncClient(api_key="your-api-key") as client:
153
+ products = client.pay.products.get_products()
154
+ status = client.trade.status.ping()
155
+
156
+ # Or without context manager
157
+ client = SyncClient(api_key="your-api-key")
158
+ try:
159
+ products = client.pay.products.get_products()
160
+ status = client.trade.status.ping()
161
+ finally:
162
+ client.close() # Manual cleanup required
163
+ ```
164
+
165
+ The sync client provides the same API surface as the async client, but all methods return results directly instead of coroutines. Under the hood, it uses `asgiref.async_to_sync` to bridge async operations to synchronous calls, ensuring reliable operation without requiring async/await syntax.
166
+
135
167
  ## Response Types
136
168
 
137
169
  There are three different available output formats you can choose from:
@@ -139,7 +171,10 @@ There are three different available output formats you can choose from:
139
171
  ### Serialized Response
140
172
  You can get fully serialized responses as pydantic models. Using this, you get the full benefits of pydantic's type checking.
141
173
  ```python
174
+ # Async client
142
175
  res = await client.pay.products.get_products()
176
+ # Sync client
177
+ res = client.pay.products.get_products()
143
178
  print(res)
144
179
  ```
145
180
  The output would look like this:
@@ -149,7 +184,10 @@ The output would look like this:
149
184
 
150
185
  ### Serialized Response with HTTP Info
151
186
  ```python
187
+ # Async client
152
188
  res = await client.pay.products.get_products_with_http_info()
189
+ # Sync client
190
+ res = client.pay.products.get_products_with_http_info()
153
191
  print(res)
154
192
  ```
155
193
  The output would look like this:
@@ -170,8 +208,12 @@ print(res.headers)
170
208
  ### JSON Response
171
209
  You can receive a classical JSON response by suffixing the function name with `_without_preload_content`
172
210
  ```python
211
+ # Async client
173
212
  response = await client.pay.products.get_products_without_preload_content()
174
213
  print(await response.json())
214
+
215
+ # Sync client - Note: use regular methods instead as response.json() returns a coroutine
216
+ response = client.pay.products.get_products_without_preload_content()
175
217
  ```
176
218
  The output would look like this:
177
219
  ```python
@@ -201,33 +243,34 @@ To override e.g. the host for the Hive client to connect to localhost:8000 inste
201
243
  from crypticorn.hive import Configuration as HiveConfig
202
244
  from crypticorn.common import Service
203
245
 
204
- async with ApiClient() as client:
246
+ # Async client
247
+ async with AsyncClient() as client:
248
+ client.configure(config=HiveConfig(host="http://localhost:8000"), service=Service.HIVE)
249
+
250
+ # Sync client
251
+ with SyncClient() as client:
205
252
  client.configure(config=HiveConfig(host="http://localhost:8000"), service=Service.HIVE)
206
253
  ```
207
254
 
208
255
  ### Session Management
209
256
 
210
- By default, `ApiClient` manages a single shared `aiohttp.ClientSession` for all service wrappers.
257
+ By default, `AsyncClient` manages a single shared `aiohttp.ClientSession` for all service wrappers.
211
258
  However, you can pass your own pre-configured `aiohttp.ClientSession` if you need advanced control — for example, to add retries, custom headers, logging, or mocking behavior.
212
259
 
213
260
  When you inject a custom session, you are responsible for managing its lifecycle, including closing when you're done.
214
261
 
215
262
  ```python
216
263
  import aiohttp
217
- from crypticorn import ApiClient
264
+ from crypticorn import AsyncClient
218
265
 
219
266
  async def main():
220
267
  custom_session = aiohttp.ClientSession()
221
- async with ApiClient(api_key="your-key", http_client=custom_session) as client:
268
+ async with AsyncClient(api_key="your-key", http_client=custom_session) as client:
222
269
  await client.trade.status.ping()
223
270
  await custom_session.close()
224
- # or
225
- custom_session = aiohttp.ClientSession()
226
- client = ApiClient(api_key="your-key", http_client=custom_session)
227
- await client.trade.status.ping()
228
- await custom_session.close()
271
+
229
272
  ```
230
- If you don’t pass a session, `ApiClient` will create and manage one internally. In that case, it will be automatically closed when using `async with` or when calling `await client.close()` manually.
273
+ If you don’t pass a session, `AsyncClient` will create and manage one internally. In that case, it will be automatically closed when using `async with` or when calling `await client.close()` manually.
231
274
 
232
275
  ### Disable Logging
233
276
 
@@ -237,3 +280,5 @@ In case you don't want any logging statements by the `crypticorn` logger to be l
237
280
  from crypticorn.common import disable_logging
238
281
  disable_logging()
239
282
  ```
283
+
284
+ **Note on Sync Client**: The `SyncClient` uses per-operation sessions (creates and closes a session for each API call) to ensure reliable synchronous behavior. Custom sessions are accepted but not used. This approach prevents event loop conflicts at the cost of slightly higher overhead per operation.
@@ -1,20 +1,20 @@
1
- crypticorn/__init__.py,sha256=ctrwe5CQtYhnetHYPgSmC0CIHa4xbDsLZvpY38tfEow,423
2
- crypticorn/client.py,sha256=eGEk-AuoVFCuXdygMXqCivj6G56O_I_JH14C8lKW3Dk,6062
1
+ crypticorn/__init__.py,sha256=mto1BnsxexPz9LTsUHnTADDIU06hr-zKHhRL9XzQ5hY,477
2
+ crypticorn/client.py,sha256=0svj2eesbTIDUT0Bv9utmoxlr_GeWzBdF_VcQjh2lXs,11225
3
3
  crypticorn/auth/__init__.py,sha256=JAl1tBLK9pYLr_-YKaj581c-c94PWLoqnatTIVAVvMM,81
4
- crypticorn/auth/main.py,sha256=FHLsAbp2mXDlmcPmLKc29qaD1dBev65V3DNKLyfz4Tw,1012
4
+ crypticorn/auth/main.py,sha256=NOkw7SVzLdKD_9LDB_2Ln8Whr8irA5BsmkAIe56sITY,1256
5
5
  crypticorn/auth/client/__init__.py,sha256=do16xS84uXvVoJuWERjb9RwlOaLy4UF4uKBZWczFC3c,5291
6
6
  crypticorn/auth/client/api_client.py,sha256=YumNsoI1ROiukpmDloiSfy7ZTd207khTmNLa7Dien5o,26888
7
7
  crypticorn/auth/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
8
8
  crypticorn/auth/client/configuration.py,sha256=hsdlmSIReQLV_-IlrOOZ7zI3XJ_8IrnkjWvNcKIBH18,18054
9
9
  crypticorn/auth/client/exceptions.py,sha256=h0Uf70boJaADhffgwDC5bXtOneCeiRyaxWZXgE8OlgM,6393
10
10
  crypticorn/auth/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- crypticorn/auth/client/rest.py,sha256=7ykLyiCyjtTiC1F-9JfrD79vaA831O_irNDmaRArnGg,6994
11
+ crypticorn/auth/client/rest.py,sha256=ug6xOI_h_Ci1uHsKu8QmbSeCxPNOD-4wrTwVaS3Vauk,7842
12
12
  crypticorn/auth/client/api/__init__.py,sha256=c-MlPvmOXSsk_ragrcUe8WkOuCPTTpJ8maSp2sER0EU,339
13
- crypticorn/auth/client/api/admin_api.py,sha256=SmChBoU6emc2q-AqH2yRAWFCsOKn2Uis2H9Z-_TGHwg,21215
14
- crypticorn/auth/client/api/auth_api.py,sha256=HsCzlkjFJjdJwNZ-toQhLaQnpH-o4fPJaf6xsO2ICiw,124272
15
- crypticorn/auth/client/api/service_api.py,sha256=rAnJOot2xLgKY9BAaEv_KtsSUgHXbOD58jypyry7Hkg,12403
16
- crypticorn/auth/client/api/user_api.py,sha256=1GdN2cfzY52SK_Qn_oGnzrAJVjI0capYuo-bHKOylE4,113273
17
- crypticorn/auth/client/api/wallet_api.py,sha256=_WRT6b5E1dEI8nd2XXjFsFFrbjbO9OdFrOooSBb6nGs,68907
13
+ crypticorn/auth/client/api/admin_api.py,sha256=Sb3Y_xRl4EyHe3tTnYuReO2x5VWyto6lwUkCQ2K3Oyg,36577
14
+ crypticorn/auth/client/api/auth_api.py,sha256=hXqLOukOawL26sEQx11UTsgAVvBi68_tO2je59IlNCE,218527
15
+ crypticorn/auth/client/api/service_api.py,sha256=CkqbMZKs66okin1ITcV45wpFcrkbry9nu7qmbwUGJYM,21920
16
+ crypticorn/auth/client/api/user_api.py,sha256=3WP2g-IxPs90LgRXf21gmrldnG_NGc7PMYddDITDQDU,198555
17
+ crypticorn/auth/client/api/wallet_api.py,sha256=hD0ABqofw5V4MXrkAPkipzoe0ZR8nGL7y0HzObI7T1E,124444
18
18
  crypticorn/auth/client/models/__init__.py,sha256=Y6t08mCcqpV7B1OIUZ5Vb5sgtr0s9sGy-0bhSh0DEgM,4383
19
19
  crypticorn/auth/client/models/add_wallet200_response.py,sha256=orw50N1bfr7qg9N8e73VmsvulFvBN0-8PMaR0ze79ks,2539
20
20
  crypticorn/auth/client/models/add_wallet_request.py,sha256=lap0RG_tbW6wq2RHlgUNugI4s0lQq50OO0tXOvK637I,3184
@@ -22,9 +22,9 @@ crypticorn/auth/client/models/authorize_user200_response.py,sha256=fstTaffARzCe7
22
22
  crypticorn/auth/client/models/authorize_user200_response_auth.py,sha256=OQzmKNICdr7tHrlhEDIxagDZx7XuW8VO2U3OMsWIJOA,3208
23
23
  crypticorn/auth/client/models/authorize_user_request.py,sha256=o_1Ms6npD_1dJQ6aYshEk9JPV7JIkmAmuRawDDPUoTc,3205
24
24
  crypticorn/auth/client/models/create_api_key200_response.py,sha256=UGjZwITv2EdS7bbt55D0w2an6_uO4u6gYr-GihL9m80,2459
25
- crypticorn/auth/client/models/create_api_key_request.py,sha256=mCdGZ4C7u73et_bv0pcRZgf1TU0cTmKty5idj9VaOqI,5627
25
+ crypticorn/auth/client/models/create_api_key_request.py,sha256=vn6OMjuPnGagFcwHxID43SSjHZIe59IYC1mCvGNP33I,5685
26
26
  crypticorn/auth/client/models/create_user_request.py,sha256=IyIlwn1F9arWEPrZRlL4ZmJOKOIRuxpe0gWodmxKuDk,2966
27
- crypticorn/auth/client/models/get_api_keys200_response_inner.py,sha256=6JGaM7NXn6C55s6VmAZSfzZHTFx5I5BCJ8eMJF1GlG4,6015
27
+ crypticorn/auth/client/models/get_api_keys200_response_inner.py,sha256=W9at4FX8OJk3gM3YFT0fLEvtM8Ubv7VtaeG3ZvQYIJ0,6073
28
28
  crypticorn/auth/client/models/list_wallets200_response.py,sha256=G2LQiThhtynkuDGFvIs-BowR38ut7cRbIeCzK4wMnPw,4732
29
29
  crypticorn/auth/client/models/list_wallets200_response_balances_inner.py,sha256=acTJa8B5U8j3_wS1TUYXnprptqF_T4dlV-wVaQ5ZXig,4023
30
30
  crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py,sha256=KrCHFXXfc6U61nDFsq26gRtQQnc2_tSjL2fwQOnBfzI,3603
@@ -65,7 +65,7 @@ crypticorn/cli/templates/auth.py,sha256=i27-Ts-Eiyv6_WRshOp7NV5OYUNbw2-kiN5Ll0k2
65
65
  crypticorn/cli/templates/dependabot.yml,sha256=ct5ieB8KAV1KLzoYKUNm6dZ9wKG_P_JQHgRjZUfT54w,861
66
66
  crypticorn/cli/templates/merge-env.sh,sha256=BNPrDTihII0yG2gehBkWwWj0GqHmb6xwmrAgwFpl8dA,554
67
67
  crypticorn/cli/templates/ruff.yml,sha256=gWicFFTzC4nToSmRkIIGipos8CZ447YG0kebBCJhtJE,319
68
- crypticorn/common/__init__.py,sha256=DXEuUU_kaLBSBcvpiFie_ROuK5XEZuTMIfsg-BZE0iE,752
68
+ crypticorn/common/__init__.py,sha256=3nv8Kfuqh15s9oTIqMQtDAqKGGNVC4BVHlHQFDmfg8I,792
69
69
  crypticorn/common/ansi_colors.py,sha256=-tMlUTE8NI7TPv7uj0kGRe-SI2hGaUNPKBFI_dfiZy0,1392
70
70
  crypticorn/common/auth.py,sha256=b7jhR8k7bQFfgokI_Eqji0MpfiyD4EhCoddefUSqs6Y,9925
71
71
  crypticorn/common/decorators.py,sha256=t5Y3vSJ-gt0n2vOYYjYN0dtzNXvZxrJs2SEItpzG8oo,1127
@@ -73,18 +73,19 @@ crypticorn/common/enums.py,sha256=x-2xe0NUI8kB6DNg9GLjqAjYOsFAGwP-jdM1YgIt9AI,13
73
73
  crypticorn/common/errors.py,sha256=qPCYpmxw0uZNmQw9RYj9vUsg-_R5aRn7fYE8qxTAnyA,30129
74
74
  crypticorn/common/exceptions.py,sha256=4oT58wcL9zQuqYU8op_36uZ1Kzt7JRCccu-o_usgqtU,6392
75
75
  crypticorn/common/logging.py,sha256=n-qaYreRNFVAFRUd91hzYoaTExNLysd9cgEXm-v6eJY,4440
76
- crypticorn/common/middleware.py,sha256=O7XiXPimNYUhF9QTv6yFUTVlb91-SK-3CfTrWMNP6Ck,1011
76
+ crypticorn/common/metrics.py,sha256=Hhl05p7UzcHWdv2l8UUfPlbCtQG0CDJ1DGEoKOiko7I,456
77
+ crypticorn/common/middleware.py,sha256=9J-Da1GNo14Xp7kPYkCPJFs9ozi4s1fHZ8ROuaQndHk,2599
77
78
  crypticorn/common/mixins.py,sha256=l7XQrBISaee6fDZXy96k0HnQ18XYocjTUXlNpVxhaOY,2206
78
79
  crypticorn/common/openapi.py,sha256=D8bCpCVVzYQptHrJ7SYOgCxI3R_d0cjW9KMOBq-x0xk,279
79
- crypticorn/common/pagination.py,sha256=eD4S8t-NHECWYCFTu3taeDv07_AzPBbopoKSZRBSiCM,2621
80
+ crypticorn/common/pagination.py,sha256=L4n6cf5itPB7qt0qzMgMcRuvDOhkTl_NSWFjyxnmyyE,7862
80
81
  crypticorn/common/scopes.py,sha256=ZreqkW_XshlyLJjciAfaIFmcy4HO6RnCsbbkjCw-fxc,2900
81
82
  crypticorn/common/urls.py,sha256=v23H2gevTNZ6HMRXDPiuc8znBbNdNqj0JTAdm5Hhms8,1223
82
- crypticorn/common/utils.py,sha256=LcWudhcjZtULg87yYghh5muTYdHvk3UmkEAXmX7xgLk,3073
83
- crypticorn/common/warnings.py,sha256=YU7JKIJpVAoBlqCXaaP61t7jzLibB1G0yjQ1NHUJ6xU,2755
84
- crypticorn/common/router/admin_router.py,sha256=x81s1gxhH7nLf7txqAIjVxrNgQmXsA1YG7g9v9KJwHA,3740
83
+ crypticorn/common/utils.py,sha256=5aWZmQEP6yKTeb7JbhfmXljUoNi2iR6F5GgG9aymTnM,3110
84
+ crypticorn/common/warnings.py,sha256=Ho2XmjsXbR0_8kTADG5PweWqOlrKlRwOr6Df-RKxDiU,3084
85
+ crypticorn/common/router/admin_router.py,sha256=pcGxNooWRoLmCPR8Dq7vC_1160Uwma7o1TGZ-WDJGAA,4095
85
86
  crypticorn/common/router/status_router.py,sha256=NpLaCF2a1jApo95iolKzzUKuyHbpf4Xwc0sM7dxQ9DE,873
86
87
  crypticorn/hive/__init__.py,sha256=hRfTlEzEql4msytdUC_04vfaHzVKG5CGZle1M-9QFgY,81
87
- crypticorn/hive/main.py,sha256=bSOY2PBi4VV_mvN1c0FQAI-En28f8HnmoZDm3g9X6lU,3103
88
+ crypticorn/hive/main.py,sha256=js63_J-Tvg1loyXxY9rmVGIak2slq3m4kmT4gOy-mWU,5589
88
89
  crypticorn/hive/utils.py,sha256=5T2GYnIFazXgAdUlO03xWqcMWhWkM82cfWvwsO8geHE,2040
89
90
  crypticorn/hive/client/__init__.py,sha256=Exioq01qeou_AXsWpEoLD-AhIlxmdTPF9hXhonk8d0s,2706
90
91
  crypticorn/hive/client/api_client.py,sha256=fDFsACK7hxXw_sgt3ZJVH2RplEdUhR0YZd4tsZA9P5Q,26869
@@ -92,14 +93,14 @@ crypticorn/hive/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1y
92
93
  crypticorn/hive/client/configuration.py,sha256=cQtPdorysVSBy2uXOof-GXozvJGdJFHRNoEhzCDPV1U,19125
93
94
  crypticorn/hive/client/exceptions.py,sha256=IKuM8sbMtr3T9z-fOuePTJmheUFahzmyZ8iamFaUpgM,6374
94
95
  crypticorn/hive/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- crypticorn/hive/client/rest.py,sha256=VhXkE7R3y1RD0QmbvIwmsk-LP_DmOei_zd9YiIXer28,6975
96
+ crypticorn/hive/client/rest.py,sha256=4BxLD0F8vamyjf-6OQB8M4soXR8SFOzgAQ9-9dIm6I4,7823
96
97
  crypticorn/hive/client/api/__init__.py,sha256=Qp35Nx0HEuKa8YmFcv6iSAqrLuR0YczPK7R-EEBDYuo,281
97
- crypticorn/hive/client/api/admin_api.py,sha256=ov2vApFo50A3uOAq717PBhrw2JpQSsHyBHnL7l3-iWI,59784
98
- crypticorn/hive/client/api/data_api.py,sha256=bXEx44opuJsJtNJORlL2A9By2FA-vhCep_ath_uIRXA,23218
99
- crypticorn/hive/client/api/models_api.py,sha256=ID0-IJjxRSQO6rq0HFaEKvEArD45QI2ULJIE5FFXJfg,76071
100
- crypticorn/hive/client/api/status_api.py,sha256=KIpSewGuK6_cUT6dfUjlvt35k1xW4YZcuSTCPWFURms,19577
98
+ crypticorn/hive/client/api/admin_api.py,sha256=bHSf4tapiQHg6M5YMoEzzfRaru5PCxaczPsqusKquS0,103905
99
+ crypticorn/hive/client/api/data_api.py,sha256=CBw5mNPi5XyU0Md2_EhyzlhWUidnjQBAEzYDEJQy9IY,41733
100
+ crypticorn/hive/client/api/models_api.py,sha256=1i4DbReBroCFWBS8o8flTtI4Y729BixQxA0tzL40YvI,135412
101
+ crypticorn/hive/client/api/status_api.py,sha256=b4jL3LTSX2XHFciARL1gbsql-8tXsJ7aqjHigs48WUc,33906
101
102
  crypticorn/hive/client/models/__init__.py,sha256=wnx72H1vU0TmWQhwe0Lq5AasPj03E9kz8Yg5UYDL4NA,1856
102
- crypticorn/hive/client/models/api_error_identifier.py,sha256=4Yfx8EJ_kvWCbwy9wfjcYWKqAETlvkVbqJf9pFdbHSc,4983
103
+ crypticorn/hive/client/models/api_error_identifier.py,sha256=lyh4-embx__hAqPzFtpafd6FjZH3ZNKJamnQLcXqoG0,4983
103
104
  crypticorn/hive/client/models/api_error_level.py,sha256=huHUOq0gBgH-MR4SZL4P-432DeW8UaMHjzvvAPvwSCE,725
104
105
  crypticorn/hive/client/models/api_error_type.py,sha256=IN_aDBQQP7sKXUNk-oElKcCBg7CYfCt8efL1qvhb54g,764
105
106
  crypticorn/hive/client/models/coin_info.py,sha256=7JQ8pkcGxz36yjAR7z0AaudkCp2Ahq88hLKGmjSZT8o,3242
@@ -123,24 +124,24 @@ crypticorn/hive/client/models/target.py,sha256=otOJK8s5WVUen6J1AQZpRiD330RIpaJU6
123
124
  crypticorn/hive/client/models/target_info.py,sha256=bnQl3505eQc1-dXZqrBCHA_5jgO8OfBiyDl5PQPlGww,3377
124
125
  crypticorn/hive/client/models/target_type.py,sha256=FUMaEFkPM7EvStPJE1auimDJ9mxDf6pbsFf-dF3coGw,684
125
126
  crypticorn/klines/__init__.py,sha256=9UUW013uZ5x4evz5zRUxbNid-6O9WAPPYvPZIHpAwms,87
126
- crypticorn/klines/main.py,sha256=S4ObqrhVlQyAvsiQ7K2tdFgttaJCcHAHJPHwfsVi7MY,2951
127
+ crypticorn/klines/main.py,sha256=hDEQx3UsmS3m0rHDQ6SAB-yMmiqzZLJIAPx_U8a5EJQ,6147
127
128
  crypticorn/klines/client/__init__.py,sha256=KAwR6kMFkKap_1Un_HsT8LqYLsTIKUNIJe9JI6Acprg,2792
128
129
  crypticorn/klines/client/api_client.py,sha256=XYk_eoVRHxQDoTKJJwMpO__LbU1DQtpMikBTyulJrvE,26925
129
130
  crypticorn/klines/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
130
131
  crypticorn/klines/client/configuration.py,sha256=9nI4_ej_iuKQay936DjvHIQ9jXFZ6f9tT4I02pgn9EM,19197
131
132
  crypticorn/klines/client/exceptions.py,sha256=UQOoeVgvSQknAxeG-nfg0629MfAQH0IpDBwnB0t4Qb8,6418
132
133
  crypticorn/klines/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
- crypticorn/klines/client/rest.py,sha256=M3VBl9SLU3D0L3DBX3Nr7sgL0Moh1G2mJX8KD_yyKbY,7021
134
+ crypticorn/klines/client/rest.py,sha256=i1uJzJaP_Hj8X1ccG2X2MWa5OJDLsQhG_Gv5Fq7t6lo,7869
134
135
  crypticorn/klines/client/api/__init__.py,sha256=OPC4DMWEWdqEKjnZicasGIx7tlOCenxz_rdAQJli-2M,519
135
- crypticorn/klines/client/api/admin_api.py,sha256=CGhHJ8O45QlNP6Zn3bXx-m92IOJM5Vz9clRIO2DM_VI,59836
136
- crypticorn/klines/client/api/change_in_timeframe_api.py,sha256=ALxGByJu6KBs2DBtoSP8ijjT4fc8eeWFsMn4focnbaA,12710
137
- crypticorn/klines/client/api/funding_rates_api.py,sha256=8RNBfVKzLchukiPDjN7IXErF0audGsaJizL6iCuAh7U,13860
138
- crypticorn/klines/client/api/ohlcv_data_api.py,sha256=zmj0dMTzofFf97np9mDZ4647Rj4gjL6w268GdUo_dmc,16806
139
- crypticorn/klines/client/api/status_api.py,sha256=U-y34gBUyrwqF6-A98Jk0q17WL88SPDMctOu1XlSu7I,19627
140
- crypticorn/klines/client/api/symbols_api.py,sha256=5TXxVW_6dHUAwbHd9qq2dNaM8orszUpYk1NdrNu6m9k,11059
141
- crypticorn/klines/client/api/udf_api.py,sha256=zaPJPsyyuYfNzO28xkkn_ZDJOwVaDlwtYSq8uoHLQMo,60899
136
+ crypticorn/klines/client/api/admin_api.py,sha256=PKzyLQ4k9VzIm4rxnIAh7wZ6fMS6SiXECp1sBNwQjpU,103957
137
+ crypticorn/klines/client/api/change_in_timeframe_api.py,sha256=11GXfNTtvx6pSESHEN0dbnzN8Ti3lyYc0hAs0EiLtyM,22793
138
+ crypticorn/klines/client/api/funding_rates_api.py,sha256=qbPYArqZqapIO92jV9lQkq863I1GrkHKvmgyOawW3hQ,25612
139
+ crypticorn/klines/client/api/ohlcv_data_api.py,sha256=0tFQ557sTNU8IvU-Ehe67Ch7fbnxpd5dPW0Ba9XqdKw,31682
140
+ crypticorn/klines/client/api/status_api.py,sha256=EycTRgz6DAkRnMMSLI2T36qoqh0lAyZ7t-df9pGfbV0,33956
141
+ crypticorn/klines/client/api/symbols_api.py,sha256=Vx2xgmpsNnshs9foMR6_gU_9HOu2-5bMCILNUP1UBpg,19201
142
+ crypticorn/klines/client/api/udf_api.py,sha256=3XrhHyN0iA0f7tKVNt-qu1dNE7qg2W4gZc9R4dT3t7g,107040
142
143
  crypticorn/klines/client/models/__init__.py,sha256=xcPaL5Lz08YQOYkpODE_u13QTeOQSEomdcO4WMlJcmc,1686
143
- crypticorn/klines/client/models/api_error_identifier.py,sha256=42hWIgovnHBojE9ccg9SULOAcJPror6adRsAMqmdHgI,4959
144
+ crypticorn/klines/client/models/api_error_identifier.py,sha256=WHZXP-Gb6qi4hJN-t0dEOeUZClTFPC4k7PsoUjTi7QY,5039
144
145
  crypticorn/klines/client/models/api_error_level.py,sha256=bNh7rTARLMKFdBMm3FLyVLI23MwN4gzE_4oi1gJsxq4,769
145
146
  crypticorn/klines/client/models/api_error_type.py,sha256=3u1K25La6DmnoJc7UL_PeK7FpbTd36NQhb9FfpeP1uE,808
146
147
  crypticorn/klines/client/models/change_in_timeframe.py,sha256=NBt_u2n5U1P1S8c28edokdbqyvTOYUQ7dYgvi2g_Ci8,2554
@@ -160,24 +161,24 @@ crypticorn/klines/client/models/symbol_type.py,sha256=uOEqlQJ714fa0SEYOxzCOx9cG-
160
161
  crypticorn/klines/client/models/timeframe.py,sha256=bSZJz3Q78V1RAnm3ZDtGBzFOnDKE3Pc5A0eP3ky3KaI,760
161
162
  crypticorn/klines/client/models/udf_config.py,sha256=cVSxnJrkwnS4p0fEUgZMekueDv28k-p58bZwvHMSmqc,5152
162
163
  crypticorn/metrics/__init__.py,sha256=t7FrHV5PaVTka90eIxDgOaWvOiyznSStcUanSbLov2o,126
163
- crypticorn/metrics/main.py,sha256=hVOlPsn2_1rrAGBxUO95KO2rpVlJUmIdzdUAs0ORgXw,3544
164
+ crypticorn/metrics/main.py,sha256=zbG-bH6iY7oTJjbP6VFvwYeusbf6HwKoEo2Z1cKEQwY,7679
164
165
  crypticorn/metrics/client/__init__.py,sha256=bu9LdJkG7vljgmLVKhoSY08ooOuEo0AhoHt7-zDVyek,2720
165
166
  crypticorn/metrics/client/api_client.py,sha256=pGWJuO-mgxlUdhJGwkScf7CviGzjDrmUAiU0LXasQY4,26934
166
167
  crypticorn/metrics/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
167
- crypticorn/metrics/client/configuration.py,sha256=wA1hBWEINMM_AlZg-DAv1AelmkjBERB5d2gA66aEwSM,19158
168
+ crypticorn/metrics/client/configuration.py,sha256=BQNgtkCNhI3uB8qCV54TMf85b3sFzQYvXGMbhar5KSM,19202
168
169
  crypticorn/metrics/client/exceptions.py,sha256=UegnYftFlQDXAQv8BmD20yRzTtWpjTHcuOymTBWmgeE,6421
169
170
  crypticorn/metrics/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
- crypticorn/metrics/client/rest.py,sha256=pWeYnpTfTV7L5U6Kli3b7i8VrmqdG8sskqSnTHPIoQo,7025
171
+ crypticorn/metrics/client/rest.py,sha256=Ka3Gz1qyqz8nnrCVGM0B2pu7FU-Doku2zXMjqTJtTYU,7873
171
172
  crypticorn/metrics/client/api/__init__.py,sha256=nNmEy9XBH8jQboMzedrzeGl8OVuDo_iylCaFw4Fgysg,649
172
- crypticorn/metrics/client/api/admin_api.py,sha256=_YobvzUaNfv0CohQdAndUH2HPw5u6FbHwVaUATvsFyU,59843
173
- crypticorn/metrics/client/api/exchanges_api.py,sha256=61js7XQkuBqQsZeJ221CmcCjiISZGEbfeu64ThplfsQ,55151
174
- crypticorn/metrics/client/api/indicators_api.py,sha256=jjSeTZe_o1_TJx_S3m-qngXRhAuGifk_MAqZXYedbns,26946
175
- crypticorn/metrics/client/api/logs_api.py,sha256=lDOixn5hn3DWc6HjExWtKZfy7U4NfcSLsO1bNFrx4GE,13550
176
- crypticorn/metrics/client/api/marketcap_api.py,sha256=WYkg5AptRtU_aUXiqqig8RHS7FQc79qhC1mM5EObfL8,51965
177
- crypticorn/metrics/client/api/markets_api.py,sha256=NbPtD5bQK_Nt73hlVd6cd1pAZ7HO1QQgNl_abNoN00s,14739
178
- crypticorn/metrics/client/api/quote_currencies_api.py,sha256=H4c3zOp5eTTUrRMlMH-H8aIIBpV4Ioj8c65UUt_BEuE,11259
179
- crypticorn/metrics/client/api/status_api.py,sha256=_Ou_EGmjPyv32G-S4QKfRemdpGG6FUsgOkbGDfYaFp0,19633
180
- crypticorn/metrics/client/api/tokens_api.py,sha256=x5a-YAeAgFJm-pN4K3-lOM-WPVYAxoBr-AYb-oxhysM,19522
173
+ crypticorn/metrics/client/api/admin_api.py,sha256=FCJF1kB7qC3fw_aqB5r24W_8HoeQrbKnUpFSDmA9y3w,103964
174
+ crypticorn/metrics/client/api/exchanges_api.py,sha256=agbcKEDArHKoO8tRmVCP51A8kPfiUM-h4v-cRAK0YgU,104834
175
+ crypticorn/metrics/client/api/indicators_api.py,sha256=ObVTmIcomyAhc_O9d1AtFZMDKm6chkYt0kGbKjf-yLg,50312
176
+ crypticorn/metrics/client/api/logs_api.py,sha256=k-hTamSx-P8ctP3KbLn10hQ0N51LEiTuMN4IHFaDY2c,25067
177
+ crypticorn/metrics/client/api/marketcap_api.py,sha256=FZAWYmrWBz98RCWeVtC2a43xE94mc9zlw_ClfdepOZE,97889
178
+ crypticorn/metrics/client/api/markets_api.py,sha256=iF3olttACLG1GVX3eBFvoRbdF_lNby1BI76XuzWkh5k,27589
179
+ crypticorn/metrics/client/api/quote_currencies_api.py,sha256=ygEu5SvsvgpW4hGAniqKOxChaoRdqV-qFRhJwBFVnoo,19716
180
+ crypticorn/metrics/client/api/status_api.py,sha256=6fZ6SoP4EZ1O5NTxHjejkenMSffi2gfIrIJaOSFzq5s,33962
181
+ crypticorn/metrics/client/api/tokens_api.py,sha256=Uxwe7owsXTQTnCeu0P68mf0QGk9X3GQN_uKGzNobX-8,34023
181
182
  crypticorn/metrics/client/models/__init__.py,sha256=hPPLh2kQc3KNHCLeOT7AS2HXu04LEeSp_G4ME7BCmW4,1475
182
183
  crypticorn/metrics/client/models/api_error_identifier.py,sha256=S55hnVdp469PkfdWCcpKlpEfO9_gLzQZPuY-gKwOuBA,5238
183
184
  crypticorn/metrics/client/models/api_error_level.py,sha256=soxtGExzlBja-Jux_jguro-1taLAGcKmGSHlxTKTYR4,772
@@ -195,22 +196,22 @@ crypticorn/metrics/client/models/severity.py,sha256=Bwls2jjCMP2lKc-_67d5WZbGPAeb
195
196
  crypticorn/metrics/client/models/time_interval.py,sha256=8bHhMNt56xVGvJi5xNFMrAkAZFRKfym1UkeGoM2H0j8,772
196
197
  crypticorn/metrics/client/models/trading_status.py,sha256=_S-KAyuCJsLLY0UTcNKkhLWoPJS-ywf7y3yTdhIuF0w,746
197
198
  crypticorn/pay/__init__.py,sha256=ux-B-YbNetpTlZTb2fijuGUOEmSm4IB0fYtieGnVDBg,78
198
- crypticorn/pay/main.py,sha256=YZ52b8ZxMGHJIxrzrcl8OKX8yJAxdBusUvqsrYdWgRo,949
199
+ crypticorn/pay/main.py,sha256=vRW7ISQDg4bqcqajTkrROqGP3y5RZXBqUE90uLrnvXQ,1233
199
200
  crypticorn/pay/client/__init__.py,sha256=fHk-Ut0ujx6rNiY3GtMY-1oY0unRSdBEKqxJS3Ch8hk,2243
200
201
  crypticorn/pay/client/api_client.py,sha256=HjmMJeQ4hcDNWm5I9LEQtZEGD1hPeyQU2y_SLmgD9mE,26870
201
202
  crypticorn/pay/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
202
- crypticorn/pay/client/configuration.py,sha256=fCMvb2xTueC13bqMeV2BdgvzCyIJscHuOYBj-upHHn4,19130
203
+ crypticorn/pay/client/configuration.py,sha256=-PRnl7AEOWSGACFOzIF42EMTZ8iGluXwhZvqAhSRXPI,19110
203
204
  crypticorn/pay/client/exceptions.py,sha256=hbV_qDEzFJ2GVU2hVi6DqQMFztSBH1M8Nnuzou5kW-g,6381
204
205
  crypticorn/pay/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- crypticorn/pay/client/rest.py,sha256=GfZLzoQiqFOYC1jIwCuxeY9XCOxlpu-Cvwn2Tu3Q1n0,6981
206
+ crypticorn/pay/client/rest.py,sha256=rk5iUofsyl1as4cg7VjCxCsae41exoeelV4MKXJEMlc,7829
206
207
  crypticorn/pay/client/api/__init__.py,sha256=OLynXJY1ujBoaam3yRbuC5QWZK31RJRGp_MWrmJ6DqY,359
207
- crypticorn/pay/client/api/admin_api.py,sha256=YxMUHucqPbl3oorYE0hJs9nn3TTKHrFpOGru0QcP7IA,59897
208
- crypticorn/pay/client/api/now_payments_api.py,sha256=HhhgdOUwrFG0-T2D2vDOdN57GmEcMYM48qr6jYpezJ0,49589
209
- crypticorn/pay/client/api/payments_api.py,sha256=fza4PnsZk9-iNubfgeprT01REcu9LgFhpkxpzVCVnSg,24640
210
- crypticorn/pay/client/api/products_api.py,sha256=ZOF-O8bkyKsjg5jKcW4hpcMhOlkc7qywExPCMpHk0F0,42756
211
- crypticorn/pay/client/api/status_api.py,sha256=G7ACZnRoKX87WbUJ8eI47XtQu_u1Xl0H1OHnC8-XrQg,19581
208
+ crypticorn/pay/client/api/admin_api.py,sha256=q2tu7IJZS-E9xpqpR9fXwzFb5qQZnuZYRcT0YZnQKWw,120069
209
+ crypticorn/pay/client/api/now_payments_api.py,sha256=dY8QpVCtgtIYuBvYTjnj8jGUWgJs47S7z-mN1r2CIuM,86450
210
+ crypticorn/pay/client/api/payments_api.py,sha256=DtzWjztuNoOW7DBNSU_uStueMM7DMxe16-17Ks8_378,45072
211
+ crypticorn/pay/client/api/products_api.py,sha256=HWTPzRMh_yQTlze2l6vsoWnfBrYN1grGFMEClmn0hKI,75690
212
+ crypticorn/pay/client/api/status_api.py,sha256=5tXrt050_F_WUYuhWItO8Hja8AfGHO_0d1HLrOkruaA,33910
212
213
  crypticorn/pay/client/models/__init__.py,sha256=Q-tN_kaQNpoCunlfMeGysTcwl2lyP9S5nJu_HFu4RZ4,1324
213
- crypticorn/pay/client/models/api_error_identifier.py,sha256=iB9vCW8uLNmmB0I5jJ2fbsSMVDzi_uCXjHyAA3KhD9I,5202
214
+ crypticorn/pay/client/models/api_error_identifier.py,sha256=tTg05asZvtM2dW-9LYk9urvlj0UJSWxZoOVKseYwxO4,5198
214
215
  crypticorn/pay/client/models/api_error_level.py,sha256=tPnObV-r0FK9e3SsqA-TBTxF7cLygn-kS5-Q0LAi8Zs,732
215
216
  crypticorn/pay/client/models/api_error_type.py,sha256=eD86iPZAOK6pL1CdCFivSQRbjpa9VcwFEl55xzjejqY,771
216
217
  crypticorn/pay/client/models/exception_detail.py,sha256=wZUdv59lViyGUJSdfZYu6gjO1gugd97XZSkVgtpcxDg,3801
@@ -223,29 +224,28 @@ crypticorn/pay/client/models/product.py,sha256=78_QcOVHEYtG2WQVCTIw_Wm-oATqNlpNc
223
224
  crypticorn/pay/client/models/product_create.py,sha256=uoVQK31dEJWpvtJETuQEK_wyAM4AOOWRYcZK8J3HUS8,3541
224
225
  crypticorn/pay/client/models/product_update.py,sha256=dM27vbcHRgtu3YrFgux3ufg8QMN5ta6OnGGRIe8Wrjk,4441
225
226
  crypticorn/pay/client/models/provider.py,sha256=w2gJkEoTBnW-VluQ3AYLouWelszdf8Y4LnAVkWJUkTQ,656
226
- crypticorn/pay/client/models/scope.py,sha256=tHhMZxKekwRw7--gljw5ocYXk7Sm1XyEJlaOQdiL-Y4,2457
227
+ crypticorn/pay/client/models/scope.py,sha256=2FYPRBuFMEsz-gwdYaKSZNSNW1iliJIwiLYCBBn16jk,2503
227
228
  crypticorn/pay/client/models/subscription.py,sha256=mkSaNn4bXIGRPCsGxwDoPjvhXYhgCFaeZhmeAASNSf4,3140
228
229
  crypticorn/trade/__init__.py,sha256=QzScH9n-ly3QSaBSpPP7EqYwhdzDqYCZJs0-AhEhrsY,84
229
- crypticorn/trade/main.py,sha256=Uzbw9D7q8_sngIaSxv9EBqIEoz0lJI5yYVJdERju0R0,1349
230
- crypticorn/trade/client/__init__.py,sha256=JVxS3kclaAweWNybWSSxHA7J4LQYWL8gb95NDTj64Rw,4094
230
+ crypticorn/trade/main.py,sha256=j-sWkCScyHe1aVeXeb37xbW3FULuvaUSivUUSdsSdqg,1576
231
+ crypticorn/trade/client/__init__.py,sha256=5RnMRt70Vdt8yRqPyBADFLL_mtOzsqEIN-KWiNuYXBA,4156
231
232
  crypticorn/trade/client/api_client.py,sha256=jcNo7CbwCmLd1whXXVnkH378MWnw_wlKzJ07L4RpCog,26966
232
233
  crypticorn/trade/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
233
234
  crypticorn/trade/client/configuration.py,sha256=n_ENslVAtUf3FN7XiNYBHFdeg-qhia8wSzWhBkMN3p0,19198
234
235
  crypticorn/trade/client/exceptions.py,sha256=SpFrOXW6rxrh-VqnH7rt7uBrJCKdCgR8YwkeaAjVXAM,6465
235
236
  crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
- crypticorn/trade/client/rest.py,sha256=7vR8Z4wHrU1uGZyW1B6j96Qo5PECAfMl0-d-wxl6S0A,7067
237
- crypticorn/trade/client/api/__init__.py,sha256=PzT1LP1-ner5PA-f_n5v97ifkP05Yh-k-ReOI9T1j-o,727
238
- crypticorn/trade/client/api/admin_api.py,sha256=x3rSuXi68grjnBZ8ro5-7wjnkLR20qtqf9zmN3KuJcg,59879
239
- crypticorn/trade/client/api/api_keys_api.py,sha256=HltCdJ-UbI9gQ5fvIvpEaAQe3ZCoq7RTiZ_2uHI7u3s,53819
240
- crypticorn/trade/client/api/bots_api.py,sha256=Ub6SVM6PgA0exB4eGVtipvm19epKNtIpxiepdCjztLU,50859
241
- crypticorn/trade/client/api/exchanges_api.py,sha256=PVTRapNFD-tOVJmSaC_X_8NbWMxM97YDB77IljKdCkw,29007
242
- crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=L4wVotLLu4p-44nEInIgM79I40xeObmn3hN1zYPiNWM,50071
243
- crypticorn/trade/client/api/notifications_api.py,sha256=-_b61sYBL7jBkSnBqhN8feDzUA3K8KLZOiLPV6Wae24,61426
244
- crypticorn/trade/client/api/orders_api.py,sha256=Sz-jOWtvVUz_Ok_WHmalN9aRdjxRyvrl3MEngrrRC5k,11167
245
- crypticorn/trade/client/api/status_api.py,sha256=YtSZh7xuOl_vq9xfPqdnfuOEA9EpftOqCR7H7yWVAcI,19671
246
- crypticorn/trade/client/api/strategies_api.py,sha256=L3BlHboDnDtsWf70_kGBU839zy4lGveF-NP1h0bogJQ,53156
247
- crypticorn/trade/client/api/trading_actions_api.py,sha256=9S5KbugtgkJAuGjujgs-ZvE5MV-4orhABkbIJxKcjsw,32735
248
- crypticorn/trade/client/models/__init__.py,sha256=KoJgwPzyY4gzwmIZuwmKyQx0Enn2-qcy7J0ahBjXIAc,2789
237
+ crypticorn/trade/client/rest.py,sha256=nVyhZrONq1kRHqodmHcOYxCMf5LgSKdjMzVMqt-uTQo,7915
238
+ crypticorn/trade/client/api/__init__.py,sha256=4K_FMAIeWRivGFNavL4mKo4gr8hLewE5vxRWBHkwPYo,638
239
+ crypticorn/trade/client/api/admin_api.py,sha256=IdNLMEPuQ_ma_9vW2iZY0FH0OtxtxOXimqTmXxUo74c,119964
240
+ crypticorn/trade/client/api/api_keys_api.py,sha256=zVR5VLNVNf-hFRitM2ZwF4R9eh32vb7AFSEBptKU6R0,111991
241
+ crypticorn/trade/client/api/bots_api.py,sha256=0lptlh1EAGxi7jGPjczThAXhHwQ9MmN_-Iy_QpcilOs,88892
242
+ crypticorn/trade/client/api/exchanges_api.py,sha256=y17CRRhDDvChcbyx_Yy4WLWyEi8fMadjHmZ6G6Lm1Dg,50586
243
+ crypticorn/trade/client/api/notifications_api.py,sha256=0JNNQGj3jn1jS1L9W2lMhU58Di01X4P3UKZ53eHtfd0,107755
244
+ crypticorn/trade/client/api/orders_api.py,sha256=pXPaxmLbGajk5m9DPZXJ0myqKBjeeCnAHbw0DiLiuDU,19515
245
+ crypticorn/trade/client/api/status_api.py,sha256=Yz-28UeaeJ-FIXAQNf4yeMYx3WZ1Q-CfFlNlBtICM_w,34000
246
+ crypticorn/trade/client/api/strategies_api.py,sha256=DhuWQWEw86LCqZ1tNAcfdBEwcJg5F_k6TvDgzre1eCI,93973
247
+ crypticorn/trade/client/api/trading_actions_api.py,sha256=pQn1tpzZz0nD2CHWSQ1tqZ8J7xzXToH9Z1wpZUXn5Ms,57119
248
+ crypticorn/trade/client/models/__init__.py,sha256=At_q0foIW4HzsEaimCU2WX6cw1MUCDX8gVXBKvifc64,2940
249
249
  crypticorn/trade/client/models/api_error_identifier.py,sha256=vOnj2swcFn3qU5brKTmd4BJEOkBLaeE07iMzLnFLogE,5282
250
250
  crypticorn/trade/client/models/api_error_level.py,sha256=8Sau6q3K29fg-EIGnex0yrw7gXJZLmyGTicYIXcehmY,816
251
251
  crypticorn/trade/client/models/api_error_type.py,sha256=34NBgCP296pQx8doVpeqlhopPfBfRH1I-135YVtN19Y,855
@@ -254,12 +254,13 @@ crypticorn/trade/client/models/bot_create.py,sha256=tMko-M8c1iTlbxP8LcCALr1Ep2TM
254
254
  crypticorn/trade/client/models/bot_status.py,sha256=Yga6SVNHBOcJhBENCWi7I12aSBhMDPI5uQrTPBReOQw,806
255
255
  crypticorn/trade/client/models/bot_update.py,sha256=ptZquK4D7eUkfBLqZK5F2uJt-5am54E8KVJ7xu9JAfE,3458
256
256
  crypticorn/trade/client/models/exception_detail.py,sha256=mW4Zxb1KtRMboZDupnhGpkiYHi1e2JE_j3qewgTwfbc,3891
257
- crypticorn/trade/client/models/exchange.py,sha256=dGaPReYJA4trppExGlKrYxmBBqJKuxYSSK37p0e5LXI,802
257
+ crypticorn/trade/client/models/exchange.py,sha256=0n80AU21SdEOPCST4wha97ATmDO4JQM0-TPrpDxPsZw,1008
258
258
  crypticorn/trade/client/models/exchange_key.py,sha256=aGyEDANSuxUdKFWTnNDi2HvAh7a-tHrx3Xi2uaT8Jig,3814
259
+ crypticorn/trade/client/models/exchange_key_balance.py,sha256=h0jjPkfJSTm5mI2Ubg4YbmhiT5nQ1rHZSJkY6hrdQI8,3776
259
260
  crypticorn/trade/client/models/exchange_key_create.py,sha256=n6yiomatf9FGB5GQpB2gVhWVmTzd7Md3rEFM2gPB2Mc,3418
260
261
  crypticorn/trade/client/models/exchange_key_update.py,sha256=6rBpzKIAzRq7Wg_P-nNSOJKoljTm3Lq3B8cVkZtM50E,3725
261
262
  crypticorn/trade/client/models/execution_ids.py,sha256=0MHzL43PX-aMjKxCkcLTPbszG5q0KruZPwlColEZW58,2963
262
- crypticorn/trade/client/models/futures_balance.py,sha256=BePXd2bngkHjcKtZButMFcsU4RS7MU1QkvzF46q8X6U,4191
263
+ crypticorn/trade/client/models/futures_balance.py,sha256=jcf6q51Gyh80rgN6aNwHANwo3BcbO6uiqK9hEoEw0d4,4101
263
264
  crypticorn/trade/client/models/futures_trading_action.py,sha256=5zGeKBTwHsHC3aQkM7fDE98yH__bC9kw-PtALhrumKI,8551
264
265
  crypticorn/trade/client/models/futures_trading_action_create.py,sha256=Aho_Do2h-Wegaq-tCWJGD3kRpueISnfkdp5c9KvTi9A,8149
265
266
  crypticorn/trade/client/models/log_level.py,sha256=Fv2WlajyWZTiXBRNyFQ1x0xqh5nrzKL_0k7fyt92bHA,813
@@ -271,17 +272,18 @@ crypticorn/trade/client/models/notification_update.py,sha256=a1tpTjKWA2kOqBJxxey
271
272
  crypticorn/trade/client/models/order.py,sha256=AQu1qV9GkbLqckgY8AW9m_hd6YDpStAIFJCEUmMewZw,11883
272
273
  crypticorn/trade/client/models/order_status.py,sha256=dQkbXtPSW4bVGQOVL0M9-Q_fMpAUa4v3uwuuUwXNcnY,852
273
274
  crypticorn/trade/client/models/post_futures_action.py,sha256=KBI3lPayQQNfQP8Attow9tkuo9zimJk19cKQQb9JK-w,3123
275
+ crypticorn/trade/client/models/spot_balance.py,sha256=8W4IH-E1zq0gklVsAAT2h8mXV58_BGcOmZzvyaQucGY,3495
274
276
  crypticorn/trade/client/models/spot_trading_action_create.py,sha256=g6Puv6BTLhgtTYqeE-QhC9WqM4wfoNQOLFsqEXZC0aQ,7494
275
- crypticorn/trade/client/models/strategy.py,sha256=Jlgt4oxseebVkbhthQDH3ayOLO2muYnyP6Kg23W02ic,5797
276
- crypticorn/trade/client/models/strategy_create.py,sha256=jtr1lUcafFzqYQKiuSXWEqfhLiT4WPj9yw63jtVW6kI,5285
277
- crypticorn/trade/client/models/strategy_exchange_info.py,sha256=xRUX4vY4HTZP2hq6joaCvO01MVRbZul_qYGrvzdZpr4,2801
278
- crypticorn/trade/client/models/strategy_update.py,sha256=f7UsKSlNardj5h6uqHYbacjWWQscXkFDqcLOoefa28M,5048
277
+ crypticorn/trade/client/models/strategy.py,sha256=YxVPkxcFijU62k03a1IhcvfyeEeQhMmkZHqMCkh_upI,5856
278
+ crypticorn/trade/client/models/strategy_create.py,sha256=mnIDuxaAN746fTNrryTdfljMVr4YygWJqE5wn7Xqk6I,5333
279
+ crypticorn/trade/client/models/strategy_exchange_info.py,sha256=1O03TWw-mRdvJKbH4a3qtqeuRKJpwduk1bcMrQRKkgs,3260
280
+ crypticorn/trade/client/models/strategy_update.py,sha256=g427iKdk-gIsQ_BfD3E0W8b_gWd00oUZuvRhIv7ZioQ,5062
279
281
  crypticorn/trade/client/models/tpsl.py,sha256=iuHwBxHaUdtJn7NhcTE6Skzv4nmoSF8jEnf7_bTglwk,3730
280
282
  crypticorn/trade/client/models/tpsl_create.py,sha256=nX4i2BGWv5rmu3SLgRngfvEMFOWa3CIy0G3fyoxI-e4,3351
281
283
  crypticorn/trade/client/models/trading_action_type.py,sha256=BysUEOl85zs79EA2zOcDN1EExcpQdABaJ4Jz08_z8VU,857
282
- crypticorn-2.16.0.dist-info/licenses/LICENSE,sha256=HonAVvzFXkP2C1d7D3ByIKPwjGH8NcHTAQvKH7uvOHQ,1856
283
- crypticorn-2.16.0.dist-info/METADATA,sha256=nNS1g853y575ebtgifCqxjGYtwmi1tkBp2g_IcmC450,9993
284
- crypticorn-2.16.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
285
- crypticorn-2.16.0.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
286
- crypticorn-2.16.0.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
287
- crypticorn-2.16.0.dist-info/RECORD,,
284
+ crypticorn-2.17.0rc2.dist-info/licenses/LICENSE,sha256=HonAVvzFXkP2C1d7D3ByIKPwjGH8NcHTAQvKH7uvOHQ,1856
285
+ crypticorn-2.17.0rc2.dist-info/METADATA,sha256=_Ju_5H3bEWhtdH8zyRizwBDQVqCo_TC1U8h3BCk4_XY,11712
286
+ crypticorn-2.17.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
287
+ crypticorn-2.17.0rc2.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
288
+ crypticorn-2.17.0rc2.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
289
+ crypticorn-2.17.0rc2.dist-info/RECORD,,