crypticorn 2.4.6__py3-none-any.whl → 2.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- crypticorn/cli/init.py +7 -4
- crypticorn/common/__init__.py +1 -0
- crypticorn/common/auth.py +11 -9
- crypticorn/common/errors.py +26 -0
- crypticorn/common/exceptions.py +83 -0
- crypticorn/common/utils.py +23 -6
- crypticorn/klines/client/__init__.py +10 -3
- crypticorn/klines/client/api/__init__.py +1 -0
- crypticorn/klines/client/api/change_in_timeframe_api.py +331 -0
- crypticorn/klines/client/api/funding_rates_api.py +13 -13
- crypticorn/klines/client/api/health_check_api.py +8 -8
- crypticorn/klines/client/api/ohlcv_data_api.py +38 -26
- crypticorn/klines/client/api/symbols_api.py +26 -20
- crypticorn/klines/client/api/udf_api.py +229 -229
- crypticorn/klines/client/api_client.py +8 -5
- crypticorn/klines/client/configuration.py +80 -37
- crypticorn/klines/client/models/__init__.py +9 -3
- crypticorn/klines/client/models/base_response_list_change_in_timeframe_response.py +123 -0
- crypticorn/klines/client/models/change_in_timeframe_response.py +86 -0
- crypticorn/klines/client/models/market_type.py +35 -0
- crypticorn/klines/client/models/response_get_udf_history.py +198 -0
- crypticorn/klines/client/rest.py +111 -159
- crypticorn/klines/main.py +37 -22
- crypticorn/metrics/main.py +42 -42
- crypticorn/pay/client/__init__.py +0 -3
- crypticorn/pay/client/api/now_payments_api.py +1 -53
- crypticorn/pay/client/models/__init__.py +0 -3
- crypticorn/pay/client/models/payment.py +3 -3
- crypticorn/pay/client/models/scope.py +6 -1
- crypticorn/trade/client/models/exchange_key_model.py +2 -1
- {crypticorn-2.4.6.dist-info → crypticorn-2.5.0.dist-info}/METADATA +8 -2
- {crypticorn-2.4.6.dist-info → crypticorn-2.5.0.dist-info}/RECORD +35 -29
- {crypticorn-2.4.6.dist-info → crypticorn-2.5.0.dist-info}/WHEEL +1 -1
- {crypticorn-2.4.6.dist-info → crypticorn-2.5.0.dist-info}/entry_points.txt +0 -0
- {crypticorn-2.4.6.dist-info → crypticorn-2.5.0.dist-info}/top_level.txt +0 -0
@@ -16,13 +16,10 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
16
16
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
17
17
|
from typing_extensions import Annotated
|
18
18
|
|
19
|
-
from pydantic import Field, StrictStr
|
20
19
|
from typing import Any
|
21
|
-
from typing_extensions import Annotated
|
22
20
|
from crypticorn.pay.client.models.now_api_status_res import NowAPIStatusRes
|
23
21
|
from crypticorn.pay.client.models.now_create_invoice_req import NowCreateInvoiceReq
|
24
22
|
from crypticorn.pay.client.models.now_create_invoice_res import NowCreateInvoiceRes
|
25
|
-
from crypticorn.pay.client.models.now_webhook_payload import NowWebhookPayload
|
26
23
|
|
27
24
|
from crypticorn.pay.client.api_client import ApiClient, RequestSerialized
|
28
25
|
from crypticorn.pay.client.api_response import ApiResponse
|
@@ -526,10 +523,6 @@ class NOWPaymentsApi:
|
|
526
523
|
@validate_call
|
527
524
|
async def handle_now_webhook(
|
528
525
|
self,
|
529
|
-
x_nowpayments_sig: Annotated[
|
530
|
-
StrictStr, Field(description="Signature for the webhook")
|
531
|
-
],
|
532
|
-
now_webhook_payload: NowWebhookPayload,
|
533
526
|
_request_timeout: Union[
|
534
527
|
None,
|
535
528
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -546,10 +539,6 @@ class NOWPaymentsApi:
|
|
546
539
|
|
547
540
|
Handle NOWPayments webhook notifications (IPN). Validates the signature, updates the payment status and creates a product subscription if the payment is successful.
|
548
541
|
|
549
|
-
:param x_nowpayments_sig: Signature for the webhook (required)
|
550
|
-
:type x_nowpayments_sig: str
|
551
|
-
:param now_webhook_payload: (required)
|
552
|
-
:type now_webhook_payload: NowWebhookPayload
|
553
542
|
:param _request_timeout: timeout setting for this request. If one
|
554
543
|
number provided, it will be total request
|
555
544
|
timeout. It can also be a pair (tuple) of
|
@@ -573,8 +562,6 @@ class NOWPaymentsApi:
|
|
573
562
|
""" # noqa: E501
|
574
563
|
|
575
564
|
_param = self._handle_now_webhook_serialize(
|
576
|
-
x_nowpayments_sig=x_nowpayments_sig,
|
577
|
-
now_webhook_payload=now_webhook_payload,
|
578
565
|
_request_auth=_request_auth,
|
579
566
|
_content_type=_content_type,
|
580
567
|
_headers=_headers,
|
@@ -583,7 +570,6 @@ class NOWPaymentsApi:
|
|
583
570
|
|
584
571
|
_response_types_map: Dict[str, Optional[str]] = {
|
585
572
|
"200": "object",
|
586
|
-
"422": "HTTPValidationError",
|
587
573
|
}
|
588
574
|
response_data = await self.api_client.call_api(
|
589
575
|
*_param, _request_timeout=_request_timeout
|
@@ -597,10 +583,6 @@ class NOWPaymentsApi:
|
|
597
583
|
@validate_call
|
598
584
|
async def handle_now_webhook_with_http_info(
|
599
585
|
self,
|
600
|
-
x_nowpayments_sig: Annotated[
|
601
|
-
StrictStr, Field(description="Signature for the webhook")
|
602
|
-
],
|
603
|
-
now_webhook_payload: NowWebhookPayload,
|
604
586
|
_request_timeout: Union[
|
605
587
|
None,
|
606
588
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -617,10 +599,6 @@ class NOWPaymentsApi:
|
|
617
599
|
|
618
600
|
Handle NOWPayments webhook notifications (IPN). Validates the signature, updates the payment status and creates a product subscription if the payment is successful.
|
619
601
|
|
620
|
-
:param x_nowpayments_sig: Signature for the webhook (required)
|
621
|
-
:type x_nowpayments_sig: str
|
622
|
-
:param now_webhook_payload: (required)
|
623
|
-
:type now_webhook_payload: NowWebhookPayload
|
624
602
|
:param _request_timeout: timeout setting for this request. If one
|
625
603
|
number provided, it will be total request
|
626
604
|
timeout. It can also be a pair (tuple) of
|
@@ -644,8 +622,6 @@ class NOWPaymentsApi:
|
|
644
622
|
""" # noqa: E501
|
645
623
|
|
646
624
|
_param = self._handle_now_webhook_serialize(
|
647
|
-
x_nowpayments_sig=x_nowpayments_sig,
|
648
|
-
now_webhook_payload=now_webhook_payload,
|
649
625
|
_request_auth=_request_auth,
|
650
626
|
_content_type=_content_type,
|
651
627
|
_headers=_headers,
|
@@ -654,7 +630,6 @@ class NOWPaymentsApi:
|
|
654
630
|
|
655
631
|
_response_types_map: Dict[str, Optional[str]] = {
|
656
632
|
"200": "object",
|
657
|
-
"422": "HTTPValidationError",
|
658
633
|
}
|
659
634
|
response_data = await self.api_client.call_api(
|
660
635
|
*_param, _request_timeout=_request_timeout
|
@@ -668,10 +643,6 @@ class NOWPaymentsApi:
|
|
668
643
|
@validate_call
|
669
644
|
async def handle_now_webhook_without_preload_content(
|
670
645
|
self,
|
671
|
-
x_nowpayments_sig: Annotated[
|
672
|
-
StrictStr, Field(description="Signature for the webhook")
|
673
|
-
],
|
674
|
-
now_webhook_payload: NowWebhookPayload,
|
675
646
|
_request_timeout: Union[
|
676
647
|
None,
|
677
648
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -688,10 +659,6 @@ class NOWPaymentsApi:
|
|
688
659
|
|
689
660
|
Handle NOWPayments webhook notifications (IPN). Validates the signature, updates the payment status and creates a product subscription if the payment is successful.
|
690
661
|
|
691
|
-
:param x_nowpayments_sig: Signature for the webhook (required)
|
692
|
-
:type x_nowpayments_sig: str
|
693
|
-
:param now_webhook_payload: (required)
|
694
|
-
:type now_webhook_payload: NowWebhookPayload
|
695
662
|
:param _request_timeout: timeout setting for this request. If one
|
696
663
|
number provided, it will be total request
|
697
664
|
timeout. It can also be a pair (tuple) of
|
@@ -715,8 +682,6 @@ class NOWPaymentsApi:
|
|
715
682
|
""" # noqa: E501
|
716
683
|
|
717
684
|
_param = self._handle_now_webhook_serialize(
|
718
|
-
x_nowpayments_sig=x_nowpayments_sig,
|
719
|
-
now_webhook_payload=now_webhook_payload,
|
720
685
|
_request_auth=_request_auth,
|
721
686
|
_content_type=_content_type,
|
722
687
|
_headers=_headers,
|
@@ -725,7 +690,6 @@ class NOWPaymentsApi:
|
|
725
690
|
|
726
691
|
_response_types_map: Dict[str, Optional[str]] = {
|
727
692
|
"200": "object",
|
728
|
-
"422": "HTTPValidationError",
|
729
693
|
}
|
730
694
|
response_data = await self.api_client.call_api(
|
731
695
|
*_param, _request_timeout=_request_timeout
|
@@ -734,8 +698,6 @@ class NOWPaymentsApi:
|
|
734
698
|
|
735
699
|
def _handle_now_webhook_serialize(
|
736
700
|
self,
|
737
|
-
x_nowpayments_sig,
|
738
|
-
now_webhook_payload,
|
739
701
|
_request_auth,
|
740
702
|
_content_type,
|
741
703
|
_headers,
|
@@ -758,12 +720,8 @@ class NOWPaymentsApi:
|
|
758
720
|
# process the path parameters
|
759
721
|
# process the query parameters
|
760
722
|
# process the header parameters
|
761
|
-
if x_nowpayments_sig is not None:
|
762
|
-
_header_params["x-nowpayments-sig"] = x_nowpayments_sig
|
763
723
|
# process the form parameters
|
764
724
|
# process the body parameter
|
765
|
-
if now_webhook_payload is not None:
|
766
|
-
_body_params = now_webhook_payload
|
767
725
|
|
768
726
|
# set the HTTP header `Accept`
|
769
727
|
if "Accept" not in _header_params:
|
@@ -771,18 +729,8 @@ class NOWPaymentsApi:
|
|
771
729
|
["application/json"]
|
772
730
|
)
|
773
731
|
|
774
|
-
# set the HTTP header `Content-Type`
|
775
|
-
if _content_type:
|
776
|
-
_header_params["Content-Type"] = _content_type
|
777
|
-
else:
|
778
|
-
_default_content_type = self.api_client.select_header_content_type(
|
779
|
-
["application/json"]
|
780
|
-
)
|
781
|
-
if _default_content_type is not None:
|
782
|
-
_header_params["Content-Type"] = _default_content_type
|
783
|
-
|
784
732
|
# authentication setting
|
785
|
-
_auth_settings: List[str] = [
|
733
|
+
_auth_settings: List[str] = []
|
786
734
|
|
787
735
|
return self.api_client.param_serialize(
|
788
736
|
method="POST",
|
@@ -18,9 +18,6 @@ from crypticorn.pay.client.models.http_validation_error import HTTPValidationErr
|
|
18
18
|
from crypticorn.pay.client.models.now_api_status_res import NowAPIStatusRes
|
19
19
|
from crypticorn.pay.client.models.now_create_invoice_req import NowCreateInvoiceReq
|
20
20
|
from crypticorn.pay.client.models.now_create_invoice_res import NowCreateInvoiceRes
|
21
|
-
from crypticorn.pay.client.models.now_fee_structure import NowFeeStructure
|
22
|
-
from crypticorn.pay.client.models.now_payment_status import NowPaymentStatus
|
23
|
-
from crypticorn.pay.client.models.now_webhook_payload import NowWebhookPayload
|
24
21
|
from crypticorn.pay.client.models.payment import Payment
|
25
22
|
from crypticorn.pay.client.models.payment_status import PaymentStatus
|
26
23
|
from crypticorn.pay.client.models.product_create import ProductCreate
|
@@ -32,7 +32,7 @@ class Payment(BaseModel):
|
|
32
32
|
|
33
33
|
id: StrictStr = Field(description="Payment ID")
|
34
34
|
product_id: StrictStr = Field(description="Product ID")
|
35
|
-
|
35
|
+
timestamp: StrictInt = Field(description="Payment timestamp in seconds")
|
36
36
|
amount: Union[StrictFloat, StrictInt] = Field(description="Payment amount")
|
37
37
|
currency: StrictStr = Field(description="Payment currency")
|
38
38
|
status: PaymentStatus
|
@@ -41,7 +41,7 @@ class Payment(BaseModel):
|
|
41
41
|
__properties: ClassVar[List[str]] = [
|
42
42
|
"id",
|
43
43
|
"product_id",
|
44
|
-
"
|
44
|
+
"timestamp",
|
45
45
|
"amount",
|
46
46
|
"currency",
|
47
47
|
"status",
|
@@ -101,7 +101,7 @@ class Payment(BaseModel):
|
|
101
101
|
{
|
102
102
|
"id": obj.get("id"),
|
103
103
|
"product_id": obj.get("product_id"),
|
104
|
-
"
|
104
|
+
"timestamp": obj.get("timestamp"),
|
105
105
|
"amount": obj.get("amount"),
|
106
106
|
"currency": obj.get("currency"),
|
107
107
|
"status": obj.get("status"),
|
@@ -26,6 +26,7 @@ class Scope(str, Enum):
|
|
26
26
|
"""
|
27
27
|
allowed enum values
|
28
28
|
"""
|
29
|
+
READ_COLON_PREDICTIONS = "read:predictions"
|
29
30
|
READ_COLON_HIVE_COLON_MODEL = "read:hive:model"
|
30
31
|
READ_COLON_HIVE_COLON_DATA = "read:hive:data"
|
31
32
|
WRITE_COLON_HIVE_COLON_MODEL = "write:hive:model"
|
@@ -48,7 +49,11 @@ class Scope(str, Enum):
|
|
48
49
|
WRITE_COLON_PAY_COLON_PRODUCTS = "write:pay:products"
|
49
50
|
READ_COLON_PAY_COLON_NOW = "read:pay:now"
|
50
51
|
WRITE_COLON_PAY_COLON_NOW = "write:pay:now"
|
51
|
-
|
52
|
+
READ_COLON_METRICS_COLON_MARKETCAP = "read:metrics:marketcap"
|
53
|
+
READ_COLON_METRICS_COLON_INDICATORS = "read:metrics:indicators"
|
54
|
+
READ_COLON_METRICS_COLON_EXCHANGES = "read:metrics:exchanges"
|
55
|
+
READ_COLON_METRICS_COLON_TOKENS = "read:metrics:tokens"
|
56
|
+
READ_COLON_METRICS_COLON_MARKETS = "read:metrics:markets"
|
52
57
|
|
53
58
|
@classmethod
|
54
59
|
def from_json(cls, json_str: str) -> Self:
|
@@ -19,6 +19,7 @@ import json
|
|
19
19
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
22
|
+
from crypticorn.trade.client.models.exchange import Exchange
|
22
23
|
from typing import Optional, Set
|
23
24
|
from typing_extensions import Self
|
24
25
|
|
@@ -31,7 +32,7 @@ class ExchangeKeyModel(BaseModel):
|
|
31
32
|
created_at: Optional[StrictInt] = None
|
32
33
|
updated_at: Optional[StrictInt] = None
|
33
34
|
id: Optional[StrictStr] = None
|
34
|
-
exchange:
|
35
|
+
exchange: Exchange = Field(description="Exchange name")
|
35
36
|
api_key: Optional[StrictStr] = None
|
36
37
|
secret: Optional[StrictStr] = None
|
37
38
|
passphrase: Optional[StrictStr] = None
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: crypticorn
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.5.0
|
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
|
@@ -56,18 +56,19 @@ crypticorn/auth/client/models/wallet_verified200_response.py,sha256=IXhtaD0CC6Jp
|
|
56
56
|
crypticorn/auth/client/models/whoami200_response.py,sha256=sFzrMXBn6npQwRsV3TJ_hDlFVbEolYJBaJDnrK5zvlM,2954
|
57
57
|
crypticorn/cli/__init__.py,sha256=bgMmlpRThjYcxXJ1U3UmLE8ODVT5olmFY1u69VOjthQ,69
|
58
58
|
crypticorn/cli/__main__.py,sha256=x9T4xS3U-qokGEzad7rTujmq4yjV5xcYSXgNsDFkvyo,253
|
59
|
-
crypticorn/cli/init.py,sha256=
|
59
|
+
crypticorn/cli/init.py,sha256=ToWGj7E8dnw0NgbuoBVZ3bzjE9Pdsg3oRPvbfvKV4l0,3586
|
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
|
-
crypticorn/common/__init__.py,sha256=
|
63
|
-
crypticorn/common/auth.py,sha256=
|
62
|
+
crypticorn/common/__init__.py,sha256=ZR6znFCEMAJH-FuSMga0KaTpAXj3tl9Xz_4Xi820l9w,312
|
63
|
+
crypticorn/common/auth.py,sha256=q5DwgoIzveGWXCHpGl4xMPEABsjufptTqsR92MsOi6M,7618
|
64
64
|
crypticorn/common/enums.py,sha256=6cCwQZVdXUoN33WA8kSf4LeSZyExZcWO2ahSsgGddCs,1243
|
65
|
-
crypticorn/common/errors.py,sha256=
|
65
|
+
crypticorn/common/errors.py,sha256=bkYl31MEyeO6fX136BBeG2Y5HAkK7O-K4o8WU3aorGI,20901
|
66
|
+
crypticorn/common/exceptions.py,sha256=JbL5K9aE1kQkZpq6J6WDfMS3dh7ImmgUPcFMNfJ_Puc,4484
|
66
67
|
crypticorn/common/pydantic.py,sha256=pmnGYCIrLv59wZkDbvPyK9NJmgPJWW74LXTdIWSjOkY,1063
|
67
68
|
crypticorn/common/scopes.py,sha256=MgH9sGodJfPjEqVtFsaczNmwEaGL2wuGzeTpga_ehXs,2407
|
68
69
|
crypticorn/common/sorter.py,sha256=keRRp4u7KJk3nS2A8tMdSF8Hbc1jcsre8KdTVuetfGc,1278
|
69
70
|
crypticorn/common/urls.py,sha256=X557WaODUqW2dECi-mOjTbmhkSpnp40fPXDdvlnBXfo,805
|
70
|
-
crypticorn/common/utils.py,sha256=
|
71
|
+
crypticorn/common/utils.py,sha256=GrC0HtS-O8Km5PUoM4_8u0MPk6NNvvnsv2XKfo6HOTY,2139
|
71
72
|
crypticorn/hive/__init__.py,sha256=hRfTlEzEql4msytdUC_04vfaHzVKG5CGZle1M-9QFgY,81
|
72
73
|
crypticorn/hive/main.py,sha256=U4wurkxnKai2i7iiq049ah9nVzBxmexRxBdFIWfd9qE,631
|
73
74
|
crypticorn/hive/client/__init__.py,sha256=b4XBX-fBb0vVHY6323ADasKFSbL66UDeUi0aV3-aNj8,2376
|
@@ -101,25 +102,28 @@ crypticorn/hive/client/models/target_type.py,sha256=rv9ub_0BM5DAR8jtGAZKbTO7RObE
|
|
101
102
|
crypticorn/hive/client/models/validation_error.py,sha256=CHRYCMcCRjt3ylBorHFBN7Q-Brn72fcn_c2-L8Q9zK8,3146
|
102
103
|
crypticorn/hive/client/models/validation_error_loc_inner.py,sha256=bpciQHI2dsFuFT2ZUyiS7ez9kjnt_YP0IQnQdYDCoyI,5050
|
103
104
|
crypticorn/klines/__init__.py,sha256=9UUW013uZ5x4evz5zRUxbNid-6O9WAPPYvPZIHpAwms,87
|
104
|
-
crypticorn/klines/main.py,sha256=
|
105
|
-
crypticorn/klines/client/__init__.py,sha256=
|
106
|
-
crypticorn/klines/client/api_client.py,sha256=
|
105
|
+
crypticorn/klines/main.py,sha256=qHZI7bew4TnEiofjy5xpv73o7zW-NiMbDfsSiCHUQTw,2712
|
106
|
+
crypticorn/klines/client/__init__.py,sha256=GQngkwOiWzF6P_pNRrvIadOhvsSidy9mRN5LwCr8slg,4094
|
107
|
+
crypticorn/klines/client/api_client.py,sha256=LUedgWkShboAtTU3QCuDTCFv2wuKY6HQeVbcp7NrHdw,27217
|
107
108
|
crypticorn/klines/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
108
|
-
crypticorn/klines/client/configuration.py,sha256=
|
109
|
+
crypticorn/klines/client/configuration.py,sha256=tsusOFmF9XtnXeA-2lvRAEH9thnLJjT5_f2E-SGT7D8,19445
|
109
110
|
crypticorn/klines/client/exceptions.py,sha256=DN5IhupCrgQLV-NlEmhhOIZJGMNpWvf72hb2bvGdvW4,6710
|
110
111
|
crypticorn/klines/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
-
crypticorn/klines/client/rest.py,sha256=
|
112
|
-
crypticorn/klines/client/api/__init__.py,sha256=
|
113
|
-
crypticorn/klines/client/api/
|
114
|
-
crypticorn/klines/client/api/
|
115
|
-
crypticorn/klines/client/api/
|
116
|
-
crypticorn/klines/client/api/
|
117
|
-
crypticorn/klines/client/api/
|
118
|
-
crypticorn/klines/client/
|
112
|
+
crypticorn/klines/client/rest.py,sha256=ge81oAFaJFfnStZLsDkjsvpq8UhbXcZ3dXbAbw-2BB4,7313
|
113
|
+
crypticorn/klines/client/api/__init__.py,sha256=3zg5s-NSPJpTRn0HMUz_ScQyiHsl7aDmmu9Ub9B6Nvs,470
|
114
|
+
crypticorn/klines/client/api/change_in_timeframe_api.py,sha256=8QP3-aaEbO-RRxTC6SHXC9HTxGpJZQGXsOXbhct7fZg,13741
|
115
|
+
crypticorn/klines/client/api/funding_rates_api.py,sha256=aGDBZJd_TW2YkU47auznxOhnCeVdbdonZP1KvKF6gzQ,14730
|
116
|
+
crypticorn/klines/client/api/health_check_api.py,sha256=Kob-cbRUgD6xjozvZD9OSIZsZmAj5_72q8v7ytx_vdw,10647
|
117
|
+
crypticorn/klines/client/api/ohlcv_data_api.py,sha256=l__qnu8v1W3JN8V8PzMvwkFSii1V0K1XgzZsP4wIjS8,17505
|
118
|
+
crypticorn/klines/client/api/symbols_api.py,sha256=A1Ve3vxyJLMR4yb6kNox-Ih1KlNco1F9f6aAzNZMj4E,11967
|
119
|
+
crypticorn/klines/client/api/udf_api.py,sha256=F9GujFljPTLu_vXSA-OwpHZcJZ4IKSlUdtG6aDj5aPk,70904
|
120
|
+
crypticorn/klines/client/models/__init__.py,sha256=oCWkWXfb8UBKMM3Jy7dAS-ato6RBlFb6MLeVqeNOhUg,3037
|
119
121
|
crypticorn/klines/client/models/base_response_health_check_response.py,sha256=Ms-8P81otU6odIJsdr_6h7IUUhZeATF-PZW7sPO1T2g,4083
|
122
|
+
crypticorn/klines/client/models/base_response_list_change_in_timeframe_response.py,sha256=NZeOIANmt6QFdOng42EP_8bzeiyeFjEysVi5IpN-08k,4409
|
120
123
|
crypticorn/klines/client/models/base_response_list_funding_rate_response.py,sha256=6NsB3uWLH13qzlTFBC0G9VmZVoftuM70V_Vkktc2a6s,4281
|
121
124
|
crypticorn/klines/client/models/base_response_list_str.py,sha256=1qQGnOZAi2BsJwxgxu2fKQnvzqCyz-MuF25GlMRqZiM,3644
|
122
125
|
crypticorn/klines/client/models/base_response_ohlcv_response.py,sha256=IPILI0pOctSP1WjsdQcRg0Mk-XOuXcYUcw9kzKC8bAI,4034
|
126
|
+
crypticorn/klines/client/models/change_in_timeframe_response.py,sha256=XO4o4PhLh6HlNLDCDSntgaISQSQAiYUrT61ePi2ZS9M,2878
|
123
127
|
crypticorn/klines/client/models/error_response.py,sha256=Gy6IOIQi3cics6PhrL08jjuyvbow7FCaxHQ0yybTmNM,3557
|
124
128
|
crypticorn/klines/client/models/exchange.py,sha256=bIgQzNJJ1qwDbOVMeUYW7hLT0R39oj9W2x39bswIB5Y,2871
|
125
129
|
crypticorn/klines/client/models/funding_rate_response.py,sha256=Os2hYJOGazHiLxCla97Y-9JwqhR4Vhfwkcna--DhVzg,3051
|
@@ -129,9 +133,11 @@ crypticorn/klines/client/models/history_no_data_response.py,sha256=-aNV6mcjhH1tu
|
|
129
133
|
crypticorn/klines/client/models/history_success_response.py,sha256=7rVvx-BMZvjJ_tv9XXsjJWKTXSqO3BP828rRgTK6afc,3347
|
130
134
|
crypticorn/klines/client/models/http_validation_error.py,sha256=NKLgTuUM_VATyr4FiTi54xF6mI33nWy0xZ0tYqrC19M,3374
|
131
135
|
crypticorn/klines/client/models/market.py,sha256=KlfgnaSV4Rwi3YjlNWD010TQqYz9yYAymrITGVGGDaM,986
|
136
|
+
crypticorn/klines/client/models/market_type.py,sha256=tDJLE1GmT_WxKeM7458dmok0HsZj0B2dYXK3k1eO8EE,1000
|
132
137
|
crypticorn/klines/client/models/ohlcv_response.py,sha256=hFYKrvj9riIdcT6q9YI_IyDZtG-Q9NEYvCwUleyJl_M,3362
|
133
138
|
crypticorn/klines/client/models/resolution.py,sha256=_Nt8lV-_J7xvDPNZBO-p2CCF0CbBTAY-fKvU0J-4hHE,1053
|
134
139
|
crypticorn/klines/client/models/response_get_history_udf_history_get.py,sha256=ZTHNstKUXw5_PPCFktv2wc2j1NPr3KjgRpBX_XgtpXE,6882
|
140
|
+
crypticorn/klines/client/models/response_get_udf_history.py,sha256=wViTof1AVu_GYoWxC5z492_cYdBAeBkhP2dG7LsWkDo,6822
|
135
141
|
crypticorn/klines/client/models/search_symbol_response.py,sha256=acAuxfKjWl3cTXimGQJTwLTczYr547dVsUf2vbeZX7E,3257
|
136
142
|
crypticorn/klines/client/models/sort_direction.py,sha256=bjUiFTCa0TSbJNU6UTtFoAzPTPjXG-wLWgHf2nBxvCE,999
|
137
143
|
crypticorn/klines/client/models/symbol_group_response.py,sha256=d2NOkTNlGj3mW0eFPgc8FddxrpvQnfam2BaZbDMe6Ec,2761
|
@@ -142,7 +148,7 @@ crypticorn/klines/client/models/udf_config_response.py,sha256=7CDUucdc3OmsMWEFeW
|
|
142
148
|
crypticorn/klines/client/models/validation_error.py,sha256=1TFg0Od5eoiksrEOQHPGQMsG9KxtbiEHfFc-Fd6z9kU,3484
|
143
149
|
crypticorn/klines/client/models/validation_error_loc_inner.py,sha256=WGQs_4K95Oag8b82FVNEb1IMrF8xBFfTZ_bXUWT-OoA,5386
|
144
150
|
crypticorn/metrics/__init__.py,sha256=t7FrHV5PaVTka90eIxDgOaWvOiyznSStcUanSbLov2o,126
|
145
|
-
crypticorn/metrics/main.py,sha256=
|
151
|
+
crypticorn/metrics/main.py,sha256=GfJQpNrqyD1SHzPs_p0oj11tZpg7g9UjfylClP-MtWg,3499
|
146
152
|
crypticorn/metrics/client/__init__.py,sha256=P5JhBky8Izm4af8FPca8lbayVFavDFAyLWsN7IBil1M,2929
|
147
153
|
crypticorn/metrics/client/api_client.py,sha256=7fXTuDKN8PwEXB1oiHTxQei0gNXbon6alzAa-QYFkw4,27114
|
148
154
|
crypticorn/metrics/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
@@ -177,7 +183,7 @@ crypticorn/metrics/client/models/validation_error.py,sha256=XAkAm1zTjroJLvnmQB6r
|
|
177
183
|
crypticorn/metrics/client/models/validation_error_loc_inner.py,sha256=p0a-GosxsFHZV22hz3u4PNwj0kPd8-7CWRNwAO05pvk,5277
|
178
184
|
crypticorn/pay/__init__.py,sha256=ux-B-YbNetpTlZTb2fijuGUOEmSm4IB0fYtieGnVDBg,78
|
179
185
|
crypticorn/pay/main.py,sha256=6sCELtBpQglCDpHlOtCMfWct_itCNv9QZCeumZI22A0,601
|
180
|
-
crypticorn/pay/client/__init__.py,sha256=
|
186
|
+
crypticorn/pay/client/__init__.py,sha256=cbghk-0dlGzvCm7JyqfWrhOnWuONe_4GOI8_2EybFuY,2234
|
181
187
|
crypticorn/pay/client/api_client.py,sha256=axhwIXY3gZod8xn8BCHjA-8v-wnyyHrxV5TxcMFqjVA,26924
|
182
188
|
crypticorn/pay/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
183
189
|
crypticorn/pay/client/configuration.py,sha256=3OBBS0Q5lthyqgjRpAssw_fJStRpzsd39PUpyg7OQfM,19164
|
@@ -185,11 +191,11 @@ crypticorn/pay/client/exceptions.py,sha256=BewSfp_OiqQ9ybRNlkZ7A_nn-8kDY1iiBSlYo
|
|
185
191
|
crypticorn/pay/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
192
|
crypticorn/pay/client/rest.py,sha256=q0P8SwRU9kXGGOaeJJjYx8JSyPU_KlO1XSZ5t8G0Nn8,7035
|
187
193
|
crypticorn/pay/client/api/__init__.py,sha256=vbisPmBd4c5G3_MHAlInKeu1obSr8witdtwxC43BnN8,302
|
188
|
-
crypticorn/pay/client/api/now_payments_api.py,sha256=
|
194
|
+
crypticorn/pay/client/api/now_payments_api.py,sha256=bLskbDa4aCD5-iftWL-9UPm70RkBqesL-Ic5qVNkrRc,30631
|
189
195
|
crypticorn/pay/client/api/payments_api.py,sha256=Nprz9wnXMmYzpKdPxtmr9vPrWm9qyS1ucr3YHSZvrls,34252
|
190
196
|
crypticorn/pay/client/api/products_api.py,sha256=Av_LkSXFihzoaDDmX7LVqjvHY_Hw0e4jqLNkHm1Tf_0,34018
|
191
197
|
crypticorn/pay/client/api/status_api.py,sha256=XSfwyUDRS3XMB8mfngLhtYqEFMOE2t6m_PAWcwX9eg0,9908
|
192
|
-
crypticorn/pay/client/models/__init__.py,sha256=
|
198
|
+
crypticorn/pay/client/models/__init__.py,sha256=s1gclQrV9n1Dtpp5OkqIhtkn57W7vyHp4Y1ATWKkoqs,1372
|
193
199
|
crypticorn/pay/client/models/api_status_res.py,sha256=2MSDgnzQZpQyjFu7I-4HkJI3ygy0Dzs1lPdvgzM63Jg,2494
|
194
200
|
crypticorn/pay/client/models/body_create_now_invoice.py,sha256=F--oFNyB0bv2mmFpwd3jG9ZGEl0Ip7slVFdSkxbVbe8,3045
|
195
201
|
crypticorn/pay/client/models/body_create_product.py,sha256=_Jh3LqwcC8U3Rz14NP6Aohimea7d3TsrSWTexm5iB5Q,3030
|
@@ -216,7 +222,7 @@ crypticorn/pay/client/models/now_payment_model.py,sha256=TbQLShcgKkF2AYRN9eAU5k6
|
|
216
222
|
crypticorn/pay/client/models/now_payment_status.py,sha256=D74hYmRztyg9V6V79K3eK34eGE7KKVT2vdCgzqAlEmA,955
|
217
223
|
crypticorn/pay/client/models/now_webhook_payload.py,sha256=6Fb2eW1w53ahNNCIXJWWK12XuD9B2t-_P_8vhqDy-Ng,6773
|
218
224
|
crypticorn/pay/client/models/partial_product_update_model.py,sha256=TIKIwGlTOT37fj0vnY3lcA_3wTlzHgFzR5141vxm-I8,4805
|
219
|
-
crypticorn/pay/client/models/payment.py,sha256=
|
225
|
+
crypticorn/pay/client/models/payment.py,sha256=nwtYGgsAyp7_6vwjTlWj1LhfjSCN0OiyFb9NR4mct3o,3592
|
220
226
|
crypticorn/pay/client/models/payment_status.py,sha256=X27W1roil70iUNkcJVKABK1dRpAUoNPa-ms8XJniGkI,877
|
221
227
|
crypticorn/pay/client/models/product.py,sha256=6_L59YIz-rdN5fHypJUcRpaU-hpG1l4xF1Cl2n8sF0k,2572
|
222
228
|
crypticorn/pay/client/models/product_create.py,sha256=D4_nazTIXavIxut2qTMWik4hvLS3eIq2bTvEwynzPPI,3597
|
@@ -226,7 +232,7 @@ crypticorn/pay/client/models/product_sub_read.py,sha256=-5lPLN2PmLIqQcMy2ziCyMZu
|
|
226
232
|
crypticorn/pay/client/models/product_subs_model.py,sha256=DeeVu-8aDJneHov97hlNR4JFph_jGu2yt9_eVTPWzpw,3355
|
227
233
|
crypticorn/pay/client/models/product_update.py,sha256=gMnHofo6JaWR53sN7WHa70tbQsfAZah_-cWHkEoD2LM,4495
|
228
234
|
crypticorn/pay/client/models/product_update_model.py,sha256=j6EGDSqko5owqk-Qrx_9fh1mQQB87welVhCBmDkWcS0,4777
|
229
|
-
crypticorn/pay/client/models/scope.py,sha256=
|
235
|
+
crypticorn/pay/client/models/scope.py,sha256=vSAmOx3rmXL0c_xEfxAu8XkO3fT-5s9BsnJWznZc77Q,2355
|
230
236
|
crypticorn/pay/client/models/services.py,sha256=GSR4E0IVNzmMkPW6AdhW9MmHFmku0YBfx27xWzAFDGI,709
|
231
237
|
crypticorn/pay/client/models/unified_payment_model.py,sha256=5IXOcKctWFejLAq_x3btO2R29fRaKMDSgMfgcYYJKY4,3621
|
232
238
|
crypticorn/pay/client/models/validation_error.py,sha256=dEYMLbX_N7IfQLeuL-BRBVnh5-plOpUe6R2YZTMzEX4,3206
|
@@ -259,7 +265,7 @@ crypticorn/trade/client/models/api_key_model.py,sha256=6VPDVA-czB5SSjE7ojXwJ_4OR
|
|
259
265
|
crypticorn/trade/client/models/bot_model.py,sha256=MEXreufRA9UfPsXW85ocx8BtRI8t3XbKeYyZAN4Y8Y0,5855
|
260
266
|
crypticorn/trade/client/models/bot_status.py,sha256=T5kntR0MTu8aTZ5okRaXfsoOu5d5c7BK8YEfXFjHGSc,776
|
261
267
|
crypticorn/trade/client/models/exchange.py,sha256=sU5_6rrI1FWWOwj2ixeci533MjeMCzLFdEyK4B8Y_mI,740
|
262
|
-
crypticorn/trade/client/models/exchange_key_model.py,sha256=
|
268
|
+
crypticorn/trade/client/models/exchange_key_model.py,sha256=xvnrGBenPThkPFm1rta8mjlRuu1Jd0rX7BVOrcx3i20,5341
|
263
269
|
crypticorn/trade/client/models/execution_ids.py,sha256=aiu2g11aUUabFdaKflx96YQoe2QYdDqP5ntDck536Os,2959
|
264
270
|
crypticorn/trade/client/models/futures_balance.py,sha256=RqAFpqUz7s72jESPQRlq7fzx8kmAtEijONMT5AfnqLs,4161
|
265
271
|
crypticorn/trade/client/models/futures_trading_action.py,sha256=O3k0tVRD-PGhWzHt2HFjGJD_gZnSPU5HLpfxyFQpCWo,9478
|
@@ -277,8 +283,8 @@ crypticorn/trade/client/models/tpsl.py,sha256=LlqzHaSA-HgQp1k4PhRckmxWNhgVZU6NgB
|
|
277
283
|
crypticorn/trade/client/models/trading_action_type.py,sha256=oLVDp94VeC9kjYbgZN7dHn2t07YGGUrAkNr2PE435eM,827
|
278
284
|
crypticorn/trade/client/models/validation_error.py,sha256=x4rR325juK4EJiFJ8l5IKp2werY8y6PWbLx_WJMxbbA,3208
|
279
285
|
crypticorn/trade/client/models/validation_error_loc_inner.py,sha256=ZB2NbHkxhjDZ2-qK1HyvzTUnabeCdxeTjbSAHNmWq5A,5111
|
280
|
-
crypticorn-2.
|
281
|
-
crypticorn-2.
|
282
|
-
crypticorn-2.
|
283
|
-
crypticorn-2.
|
284
|
-
crypticorn-2.
|
286
|
+
crypticorn-2.5.0.dist-info/METADATA,sha256=GlrZLBUMdt1DunPqcbpgts62HKVao_oM2ZG9RxP_H00,6207
|
287
|
+
crypticorn-2.5.0.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
288
|
+
crypticorn-2.5.0.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
|
289
|
+
crypticorn-2.5.0.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
|
290
|
+
crypticorn-2.5.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|