crypticorn 1.0.0__py3-none-any.whl → 1.0.1__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 (36) hide show
  1. crypticorn/models/__init__.py +31 -0
  2. crypticorn/models/action_model.py +205 -0
  3. crypticorn/models/api_error_identifier.py +81 -0
  4. crypticorn/models/api_key_model.py +138 -0
  5. crypticorn/models/bot_model.py +118 -0
  6. crypticorn/models/create_api_key_response.py +99 -0
  7. crypticorn/models/deleted.py +87 -0
  8. crypticorn/models/exchange.py +37 -0
  9. crypticorn/models/execution_ids.py +91 -0
  10. crypticorn/models/futures_balance.py +109 -0
  11. crypticorn/models/futures_balance_error.py +89 -0
  12. crypticorn/models/futures_trading_action.py +198 -0
  13. crypticorn/models/get_futures_balance200_response_inner.py +134 -0
  14. crypticorn/models/http_validation_error.py +95 -0
  15. crypticorn/models/id.py +87 -0
  16. crypticorn/models/margin_mode.py +37 -0
  17. crypticorn/models/market_type.py +37 -0
  18. crypticorn/models/modified.py +87 -0
  19. crypticorn/models/notification_model.py +111 -0
  20. crypticorn/models/notification_type.py +39 -0
  21. crypticorn/models/order_model.py +266 -0
  22. crypticorn/models/order_status.py +40 -0
  23. crypticorn/models/post_futures_action.py +93 -0
  24. crypticorn/models/strategy_exchange_info.py +90 -0
  25. crypticorn/models/strategy_model.py +115 -0
  26. crypticorn/models/tpsl.py +116 -0
  27. crypticorn/models/trading_action_type.py +39 -0
  28. crypticorn/models/update_notification.py +91 -0
  29. crypticorn/models/validation_error.py +99 -0
  30. crypticorn/models/validation_error_loc_inner.py +138 -0
  31. {crypticorn-1.0.0.dist-info → crypticorn-1.0.1.dist-info}/METADATA +9 -3
  32. crypticorn-1.0.1.dist-info/RECORD +38 -0
  33. {crypticorn-1.0.0.dist-info → crypticorn-1.0.1.dist-info}/WHEEL +1 -1
  34. crypticorn-1.0.0.dist-info/RECORD +0 -8
  35. {crypticorn-1.0.0.dist-info → crypticorn-1.0.1.dist-info}/LICENSE.md +0 -0
  36. {crypticorn-1.0.0.dist-info → crypticorn-1.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,116 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional, Union
22
+ from typing_extensions import Annotated
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class TPSL(BaseModel):
27
+ """
28
+ Model for take profit and stop loss targets
29
+ """ # noqa: E501
30
+ price_delta: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = None
31
+ price: Optional[Union[StrictFloat, StrictInt]] = None
32
+ allocation: Union[Annotated[float, Field(le=1.0, strict=True, ge=0.0)], Annotated[int, Field(le=1, strict=True, ge=0)]] = Field(description="Percentage of the order to sell")
33
+ execution_id: Optional[StrictStr] = None
34
+ client_order_id: Optional[StrictStr] = None
35
+ __properties: ClassVar[List[str]] = ["price_delta", "price", "allocation", "execution_id", "client_order_id"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of TPSL from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ # set to None if price_delta (nullable) is None
77
+ # and model_fields_set contains the field
78
+ if self.price_delta is None and "price_delta" in self.model_fields_set:
79
+ _dict['price_delta'] = None
80
+
81
+ # set to None if price (nullable) is None
82
+ # and model_fields_set contains the field
83
+ if self.price is None and "price" in self.model_fields_set:
84
+ _dict['price'] = None
85
+
86
+ # set to None if execution_id (nullable) is None
87
+ # and model_fields_set contains the field
88
+ if self.execution_id is None and "execution_id" in self.model_fields_set:
89
+ _dict['execution_id'] = None
90
+
91
+ # set to None if client_order_id (nullable) is None
92
+ # and model_fields_set contains the field
93
+ if self.client_order_id is None and "client_order_id" in self.model_fields_set:
94
+ _dict['client_order_id'] = None
95
+
96
+ return _dict
97
+
98
+ @classmethod
99
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
100
+ """Create an instance of TPSL from a dict"""
101
+ if obj is None:
102
+ return None
103
+
104
+ if not isinstance(obj, dict):
105
+ return cls.model_validate(obj)
106
+
107
+ _obj = cls.model_validate({
108
+ "price_delta": obj.get("price_delta"),
109
+ "price": obj.get("price"),
110
+ "allocation": obj.get("allocation"),
111
+ "execution_id": obj.get("execution_id"),
112
+ "client_order_id": obj.get("client_order_id")
113
+ })
114
+ return _obj
115
+
116
+
@@ -0,0 +1,39 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import json
17
+ from enum import Enum
18
+ from typing_extensions import Self
19
+
20
+
21
+ class TradingActionType(str, Enum):
22
+ """
23
+ Type of trading action
24
+ """
25
+
26
+ """
27
+ allowed enum values
28
+ """
29
+ OPEN_LONG = 'open_long'
30
+ OPEN_SHORT = 'open_short'
31
+ CLOSE_LONG = 'close_long'
32
+ CLOSE_SHORT = 'close_short'
33
+
34
+ @classmethod
35
+ def from_json(cls, json_str: str) -> Self:
36
+ """Create an instance of TradingActionType from a JSON string"""
37
+ return cls(json.loads(json_str))
38
+
39
+
@@ -0,0 +1,91 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class UpdateNotification(BaseModel):
26
+ """
27
+ UpdateNotification
28
+ """ # noqa: E501
29
+ id: StrictStr = Field(description="UID, required in the request body")
30
+ viewed: Optional[StrictBool] = Field(default=False, description="Whether the notification has been marked as seen")
31
+ sent: Optional[StrictBool] = Field(default=False, description="Whether the notification has been sent as an email")
32
+ __properties: ClassVar[List[str]] = ["id", "viewed", "sent"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of UpdateNotification from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ """
65
+ excluded_fields: Set[str] = set([
66
+ ])
67
+
68
+ _dict = self.model_dump(
69
+ by_alias=True,
70
+ exclude=excluded_fields,
71
+ exclude_none=True,
72
+ )
73
+ return _dict
74
+
75
+ @classmethod
76
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
77
+ """Create an instance of UpdateNotification from a dict"""
78
+ if obj is None:
79
+ return None
80
+
81
+ if not isinstance(obj, dict):
82
+ return cls.model_validate(obj)
83
+
84
+ _obj = cls.model_validate({
85
+ "id": obj.get("id"),
86
+ "viewed": obj.get("viewed") if obj.get("viewed") is not None else False,
87
+ "sent": obj.get("sent") if obj.get("sent") is not None else False
88
+ })
89
+ return _obj
90
+
91
+
@@ -0,0 +1,99 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, StrictStr
21
+ from typing import Any, ClassVar, Dict, List
22
+ from crypticorn.models.validation_error_loc_inner import ValidationErrorLocInner
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class ValidationError(BaseModel):
27
+ """
28
+ ValidationError
29
+ """ # noqa: E501
30
+ loc: List[ValidationErrorLocInner]
31
+ msg: StrictStr
32
+ type: StrictStr
33
+ __properties: ClassVar[List[str]] = ["loc", "msg", "type"]
34
+
35
+ model_config = ConfigDict(
36
+ populate_by_name=True,
37
+ validate_assignment=True,
38
+ protected_namespaces=(),
39
+ )
40
+
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> Optional[Self]:
53
+ """Create an instance of ValidationError from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self) -> Dict[str, Any]:
57
+ """Return the dictionary representation of the model using alias.
58
+
59
+ This has the following differences from calling pydantic's
60
+ `self.model_dump(by_alias=True)`:
61
+
62
+ * `None` is only added to the output dict for nullable fields that
63
+ were set at model initialization. Other fields with value `None`
64
+ are ignored.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ ])
68
+
69
+ _dict = self.model_dump(
70
+ by_alias=True,
71
+ exclude=excluded_fields,
72
+ exclude_none=True,
73
+ )
74
+ # override the default output from pydantic by calling `to_dict()` of each item in loc (list)
75
+ _items = []
76
+ if self.loc:
77
+ for _item_loc in self.loc:
78
+ if _item_loc:
79
+ _items.append(_item_loc.to_dict())
80
+ _dict['loc'] = _items
81
+ return _dict
82
+
83
+ @classmethod
84
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
85
+ """Create an instance of ValidationError from a dict"""
86
+ if obj is None:
87
+ return None
88
+
89
+ if not isinstance(obj, dict):
90
+ return cls.model_validate(obj)
91
+
92
+ _obj = cls.model_validate({
93
+ "loc": [ValidationErrorLocInner.from_dict(_item) for _item in obj["loc"]] if obj.get("loc") is not None else None,
94
+ "msg": obj.get("msg"),
95
+ "type": obj.get("type")
96
+ })
97
+ return _obj
98
+
99
+
@@ -0,0 +1,138 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ FastAPI
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ from inspect import getfullargspec
17
+ import json
18
+ import pprint
19
+ import re # noqa: F401
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, ValidationError, field_validator
21
+ from typing import Optional
22
+ from typing import Union, Any, List, Set, TYPE_CHECKING, Optional, Dict
23
+ from typing_extensions import Literal, Self
24
+ from pydantic import Field
25
+
26
+ VALIDATIONERRORLOCINNER_ANY_OF_SCHEMAS = ["int", "str"]
27
+
28
+ class ValidationErrorLocInner(BaseModel):
29
+ """
30
+ ValidationErrorLocInner
31
+ """
32
+
33
+ # data type: str
34
+ anyof_schema_1_validator: Optional[StrictStr] = None
35
+ # data type: int
36
+ anyof_schema_2_validator: Optional[StrictInt] = None
37
+ if TYPE_CHECKING:
38
+ actual_instance: Optional[Union[int, str]] = None
39
+ else:
40
+ actual_instance: Any = None
41
+ any_of_schemas: Set[str] = { "int", "str" }
42
+
43
+ model_config = {
44
+ "validate_assignment": True,
45
+ "protected_namespaces": (),
46
+ }
47
+
48
+ def __init__(self, *args, **kwargs) -> None:
49
+ if args:
50
+ if len(args) > 1:
51
+ raise ValueError("If a position argument is used, only 1 is allowed to set `actual_instance`")
52
+ if kwargs:
53
+ raise ValueError("If a position argument is used, keyword arguments cannot be used.")
54
+ super().__init__(actual_instance=args[0])
55
+ else:
56
+ super().__init__(**kwargs)
57
+
58
+ @field_validator('actual_instance')
59
+ def actual_instance_must_validate_anyof(cls, v):
60
+ instance = ValidationErrorLocInner.model_construct()
61
+ error_messages = []
62
+ # validate data type: str
63
+ try:
64
+ instance.anyof_schema_1_validator = v
65
+ return v
66
+ except (ValidationError, ValueError) as e:
67
+ error_messages.append(str(e))
68
+ # validate data type: int
69
+ try:
70
+ instance.anyof_schema_2_validator = v
71
+ return v
72
+ except (ValidationError, ValueError) as e:
73
+ error_messages.append(str(e))
74
+ if error_messages:
75
+ # no match
76
+ raise ValueError("No match found when setting the actual_instance in ValidationErrorLocInner with anyOf schemas: int, str. Details: " + ", ".join(error_messages))
77
+ else:
78
+ return v
79
+
80
+ @classmethod
81
+ def from_dict(cls, obj: Dict[str, Any]) -> Self:
82
+ return cls.from_json(json.dumps(obj))
83
+
84
+ @classmethod
85
+ def from_json(cls, json_str: str) -> Self:
86
+ """Returns the object represented by the json string"""
87
+ instance = cls.model_construct()
88
+ error_messages = []
89
+ # deserialize data into str
90
+ try:
91
+ # validation
92
+ instance.anyof_schema_1_validator = json.loads(json_str)
93
+ # assign value to actual_instance
94
+ instance.actual_instance = instance.anyof_schema_1_validator
95
+ return instance
96
+ except (ValidationError, ValueError) as e:
97
+ error_messages.append(str(e))
98
+ # deserialize data into int
99
+ try:
100
+ # validation
101
+ instance.anyof_schema_2_validator = json.loads(json_str)
102
+ # assign value to actual_instance
103
+ instance.actual_instance = instance.anyof_schema_2_validator
104
+ return instance
105
+ except (ValidationError, ValueError) as e:
106
+ error_messages.append(str(e))
107
+
108
+ if error_messages:
109
+ # no match
110
+ raise ValueError("No match found when deserializing the JSON string into ValidationErrorLocInner with anyOf schemas: int, str. Details: " + ", ".join(error_messages))
111
+ else:
112
+ return instance
113
+
114
+ def to_json(self) -> str:
115
+ """Returns the JSON representation of the actual instance"""
116
+ if self.actual_instance is None:
117
+ return "null"
118
+
119
+ if hasattr(self.actual_instance, "to_json") and callable(self.actual_instance.to_json):
120
+ return self.actual_instance.to_json()
121
+ else:
122
+ return json.dumps(self.actual_instance)
123
+
124
+ def to_dict(self) -> Optional[Union[Dict[str, Any], int, str]]:
125
+ """Returns the dict representation of the actual instance"""
126
+ if self.actual_instance is None:
127
+ return None
128
+
129
+ if hasattr(self.actual_instance, "to_dict") and callable(self.actual_instance.to_dict):
130
+ return self.actual_instance.to_dict()
131
+ else:
132
+ return self.actual_instance
133
+
134
+ def to_str(self) -> str:
135
+ """Returns the string representation of the actual instance"""
136
+ return pprint.pformat(self.model_dump())
137
+
138
+
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: crypticorn
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Maximise Your Crypto Trading Profits with AI Predictions
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  License: MIT License
@@ -19,13 +19,19 @@ Description-Content-Type: text/markdown
19
19
  License-File: LICENSE.md
20
20
  Requires-Dist: pandas<3.0.0,>=2.2.0
21
21
  Requires-Dist: requests<3.0.0,>=2.32.0
22
+ Requires-Dist: tqdm<5.0.0,>=4.67.0
23
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
24
+ Provides-Extra: dev
25
+ Requires-Dist: black; extra == "dev"
26
+ Requires-Dist: twine; extra == "dev"
27
+ Requires-Dist: build; extra == "dev"
22
28
 
23
29
  # What is Crypticorn?
24
30
 
25
31
  Crypticorn is at the forefront of cutting-edge artificial intelligence cryptocurrency trading.
26
32
  Crypticorn offers AI-based solutions for both active and passive investors, including:
27
33
  - Prediction Dashboard with trading terminal,
28
- - AI Trading Bots with different strategies,
34
+ - AI Agents with different strategies,
29
35
  - DEX AI Signals for newly launched tokens,
30
36
  - DEX AI Bots
31
37
 
@@ -0,0 +1,38 @@
1
+ crypticorn/__init__.py,sha256=xwaLwFv2nokaml0otKuLpR3KR8L6SFRWtu4KmFdWeeA,118
2
+ crypticorn/api.py,sha256=YKtYHg7dj4yDKNAyEWNuyzQ8-_HLv2Avuy2iB951Vd4,4853
3
+ crypticorn/utils.py,sha256=veuxIfhHvzPr_JBDwLu9Allsnkesaz22tzcEnHkkhYs,3126
4
+ crypticorn/models/__init__.py,sha256=koNGF8it9H5ih4n_5Smsgvs4f19SnKdQLMBWOAgShfU,954
5
+ crypticorn/models/action_model.py,sha256=1NVncAYo0gYdZVOkDG6wGNlBiPKCPi3Ts0tt6P141XI,9056
6
+ crypticorn/models/api_error_identifier.py,sha256=M1VHRx66vp6kELsDTT3JtbaI5d2ynBfuBurGQc9I1m0,3320
7
+ crypticorn/models/api_key_model.py,sha256=upsYNOeAj6hnVG7GLN31z7cXMbfj903SU5QMNvPrj5A,4803
8
+ crypticorn/models/bot_model.py,sha256=-O_9PHhD03ik6rAp8VA60oiFfexleTwEMuwnR13AWl4,4341
9
+ crypticorn/models/create_api_key_response.py,sha256=uWjizw_zclS9ScRiUg7CZ-psHtO3FaHkzqy2T5EdG5o,2995
10
+ crypticorn/models/deleted.py,sha256=GTLuJtiIvSOEo4f1LwoeQWNXiVNNwl7pYvi5uV402UU,2514
11
+ crypticorn/models/exchange.py,sha256=UdNrCO_0L8ZFmuVsBgtEjV71UpRdi2I0XW-YeDyb7zw,746
12
+ crypticorn/models/execution_ids.py,sha256=dJt4Qjg0B1TdeL3fI0_ZNGMZgYX_KBwIbzwxSWgSCao,2877
13
+ crypticorn/models/futures_balance.py,sha256=VJ2Cdm5qdvzQwaF0sR2tIoWhb5MDQAvWOOVl_lyijNc,4012
14
+ crypticorn/models/futures_balance_error.py,sha256=3OqfU4Fi09txX99Fm7BdHeBMFOYCLq4fOUIaKwrBJhQ,2696
15
+ crypticorn/models/futures_trading_action.py,sha256=HqA1X9z_RC2j9LRubaRjY04tzuI8hRoCf6CjFYE1nKY,8784
16
+ crypticorn/models/get_futures_balance200_response_inner.py,sha256=uUvnkgiVOf_gMBRLyjDQ5YuELkSAUOqjjQK3bhk0mz8,5100
17
+ crypticorn/models/http_validation_error.py,sha256=dPlioKpQGd6jBnATJ9USzQTiSoeEOBlLFCN91q9y-6w,3000
18
+ crypticorn/models/id.py,sha256=dY7_AH699HCKPGTCdGsiiI3aWPaCmXpYYMFT6kJ-fdA,2480
19
+ crypticorn/models/margin_mode.py,sha256=u96KDpDFRM0MIs4xbXzDOT-wn6uO73wBGZthoTP1MuE,765
20
+ crypticorn/models/market_type.py,sha256=ppUr4WJnAiuZEZkD1WnM-oKi4vKx0ykXweAXAyfPTCk,745
21
+ crypticorn/models/modified.py,sha256=on721AzP0g30cqj-RBFBevmsWSC5mmb87BrDlIBerL8,2523
22
+ crypticorn/models/notification_model.py,sha256=4AbPDhl5ZPRRJBeIR47fLFcJI27O3iAR-zrEHf7aKUI,4107
23
+ crypticorn/models/notification_type.py,sha256=Cq7GDV6BwBxttohb7NMdC0nWx1-Igdq4pUDYY8CCiu0,803
24
+ crypticorn/models/order_model.py,sha256=oIbg6D5BpOe36xKWEbS6MleFzYG-opJzLjwjqk60ulI,11102
25
+ crypticorn/models/order_status.py,sha256=V13eUjWXoZn5TD0Eyl2Q7XL9Ih6zkOUyCPOhNQ7UyTk,840
26
+ crypticorn/models/post_futures_action.py,sha256=PtUp1VFEb6vOc5lBDKDW_bJ7jSKMrSFClJMY047Nj7c,2990
27
+ crypticorn/models/strategy_exchange_info.py,sha256=zqSbZ1Xi5sFs3QCiq0n8dnoxszds1Fw-WekJN0kU_Eg,2821
28
+ crypticorn/models/strategy_model.py,sha256=neXU4Zm7YAzqjD432GYCOOPmvN7mJ3fqWr4RbNPk_3w,4384
29
+ crypticorn/models/tpsl.py,sha256=6Ue5uRCkMm1dUSr7xT4Y9308ZsjoZwIQ74koZGBAF6c,4180
30
+ crypticorn/models/trading_action_type.py,sha256=eH7sFKbFojxqMdtmqq_FOrVVZ6jEOwK-uRPBBWQdeUw,845
31
+ crypticorn/models/update_notification.py,sha256=7Aw4z98ANT6D5octUmz5UXe6EC7_Mk8ax679bjjCkXk,2988
32
+ crypticorn/models/validation_error.py,sha256=EOWKqOHCzc1J1YwpM0DNepWh4dDQAb68DryLykxat9Y,3092
33
+ crypticorn/models/validation_error_loc_inner.py,sha256=wHiW_qKw46E2pUdOnesgpdnuqpTX9IQTaEOVDgph5_E,4885
34
+ crypticorn-1.0.1.dist-info/LICENSE.md,sha256=4QRTsg__j9b8qUNkL1jcDlrOMViv5B7wJF3p7khs-M0,1053
35
+ crypticorn-1.0.1.dist-info/METADATA,sha256=cPuxmacRQus1kP2wIySya0qMOZ7oGy2cNMG8bY6zCMo,1517
36
+ crypticorn-1.0.1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
37
+ crypticorn-1.0.1.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
38
+ crypticorn-1.0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,8 +0,0 @@
1
- crypticorn/__init__.py,sha256=xwaLwFv2nokaml0otKuLpR3KR8L6SFRWtu4KmFdWeeA,118
2
- crypticorn/api.py,sha256=YKtYHg7dj4yDKNAyEWNuyzQ8-_HLv2Avuy2iB951Vd4,4853
3
- crypticorn/utils.py,sha256=veuxIfhHvzPr_JBDwLu9Allsnkesaz22tzcEnHkkhYs,3126
4
- crypticorn-1.0.0.dist-info/LICENSE.md,sha256=4QRTsg__j9b8qUNkL1jcDlrOMViv5B7wJF3p7khs-M0,1053
5
- crypticorn-1.0.0.dist-info/METADATA,sha256=mXN5YbgYqrZ1Ax7s6iddK8_7Lv5NRng8ppV22qpevgI,1319
6
- crypticorn-1.0.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
7
- crypticorn-1.0.0.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
8
- crypticorn-1.0.0.dist-info/RECORD,,