trd-utils 0.0.6__tar.gz → 0.0.7__tar.gz
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.
Potentially problematic release.
This version of trd-utils might be problematic. Click here for more details.
- {trd_utils-0.0.6 → trd_utils-0.0.7}/PKG-INFO +1 -1
- {trd_utils-0.0.6 → trd_utils-0.0.7}/pyproject.toml +1 -1
- trd_utils-0.0.7/trd_utils/__init__.py +3 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/types_helper/__init__.py +3 -1
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/types_helper/base_model.py +129 -9
- trd_utils-0.0.6/trd_utils/__init__.py +0 -3
- {trd_utils-0.0.6 → trd_utils-0.0.7}/LICENSE +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/README.md +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/cipher/__init__.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/common_utils/float_utils.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/__init__.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/blofin/__init__.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/blofin/blofin_client.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/blofin/blofin_types.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/bx_ultra/__init__.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/bx_ultra/bx_types.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/bx_ultra/bx_ultra_client.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/bx_ultra/bx_utils.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/exchanges/exchange_base.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/html_utils/__init__.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/html_utils/html_formats.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/tradingview/__init__.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/tradingview/tradingview_client.py +0 -0
- {trd_utils-0.0.6 → trd_utils-0.0.7}/trd_utils/tradingview/tradingview_types.py +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from decimal import Decimal
|
|
1
2
|
import json
|
|
2
3
|
from typing import (
|
|
3
4
|
Union,
|
|
@@ -46,6 +47,85 @@ def is_any_type(target_type: type) -> bool:
|
|
|
46
47
|
return target_type == Any or target_type is type(None)
|
|
47
48
|
|
|
48
49
|
|
|
50
|
+
# TODO: add support for max_depth for this...
|
|
51
|
+
def value_to_normal_obj(value):
|
|
52
|
+
"""
|
|
53
|
+
Converts a custom value, to a corresponding "normal object" which can be used
|
|
54
|
+
in dict.
|
|
55
|
+
"""
|
|
56
|
+
if isinstance(value, BaseModel):
|
|
57
|
+
return value.to_dict()
|
|
58
|
+
|
|
59
|
+
if isinstance(value, list):
|
|
60
|
+
results = []
|
|
61
|
+
for current in value:
|
|
62
|
+
results.append(value_to_normal_obj(current))
|
|
63
|
+
return results
|
|
64
|
+
|
|
65
|
+
if isinstance(value, (int, str)) or value is None:
|
|
66
|
+
return value
|
|
67
|
+
|
|
68
|
+
if isinstance(value, Decimal):
|
|
69
|
+
return str(value)
|
|
70
|
+
|
|
71
|
+
if isinstance(value, dict):
|
|
72
|
+
result = {}
|
|
73
|
+
for inner_key, inner_value in value.items():
|
|
74
|
+
result[inner_key] = value_to_normal_obj(inner_value)
|
|
75
|
+
|
|
76
|
+
return result
|
|
77
|
+
|
|
78
|
+
raise TypeError(f"unsupported type provided: {type(value)}")
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
def generic_obj_to_value(
|
|
82
|
+
expected_type: type,
|
|
83
|
+
expected_type_args: tuple[type],
|
|
84
|
+
value: Any,
|
|
85
|
+
):
|
|
86
|
+
"""
|
|
87
|
+
Converts a normal JSON-compatible "object" to a customized python value.
|
|
88
|
+
"""
|
|
89
|
+
if not expected_type_args:
|
|
90
|
+
expected_type_args = get_type_args(expected_type)
|
|
91
|
+
|
|
92
|
+
if isinstance(value, list):
|
|
93
|
+
result = []
|
|
94
|
+
for current in value:
|
|
95
|
+
result.append(generic_obj_to_value(
|
|
96
|
+
expected_type=expected_type_args[0],
|
|
97
|
+
expected_type_args=expected_type_args[1:],
|
|
98
|
+
value=current,
|
|
99
|
+
))
|
|
100
|
+
return result
|
|
101
|
+
|
|
102
|
+
expected_type_name = getattr(expected_type, "__name__", None)
|
|
103
|
+
if expected_type_name == "dict" and isinstance(value, dict):
|
|
104
|
+
result = {}
|
|
105
|
+
for inner_key, inner_value in value.items():
|
|
106
|
+
result[expected_type_args[0](inner_key)] = generic_obj_to_value(
|
|
107
|
+
expected_type=expected_type_args[1],
|
|
108
|
+
expected_type_args=expected_type_args[1:],
|
|
109
|
+
value=inner_value,
|
|
110
|
+
)
|
|
111
|
+
return result
|
|
112
|
+
|
|
113
|
+
if isinstance(value, dict) and issubclass(expected_type, BaseModel):
|
|
114
|
+
if len(expected_type_args) > 1:
|
|
115
|
+
raise ValueError(
|
|
116
|
+
"unsupported operation: at this time we cannot have"
|
|
117
|
+
" expected type args at all...",
|
|
118
|
+
)
|
|
119
|
+
return expected_type(**value)
|
|
120
|
+
|
|
121
|
+
if not expected_type_args:
|
|
122
|
+
if isinstance(value, expected_type):
|
|
123
|
+
return value
|
|
124
|
+
return expected_type(value)
|
|
125
|
+
|
|
126
|
+
raise TypeError(f"unsupported type: {type(value)}")
|
|
127
|
+
|
|
128
|
+
|
|
49
129
|
class UltraList(list):
|
|
50
130
|
def __getattr__(self, attr):
|
|
51
131
|
if len(self) == 0:
|
|
@@ -104,31 +184,44 @@ class BaseModel:
|
|
|
104
184
|
except Exception:
|
|
105
185
|
pass
|
|
106
186
|
|
|
107
|
-
|
|
187
|
+
expected_type_args = get_type_args(expected_type)
|
|
188
|
+
expected_type_name = getattr(expected_type, "__name__", None)
|
|
189
|
+
is_optional_type = expected_type_name == "Optional"
|
|
190
|
+
is_dict_type = expected_type_name == "dict"
|
|
108
191
|
# maybe in the future we can have some other usages for is_optional_type
|
|
109
192
|
# variable or something like that.
|
|
110
193
|
if is_optional_type:
|
|
111
194
|
try:
|
|
112
|
-
expected_type =
|
|
195
|
+
expected_type = expected_type_args[0]
|
|
113
196
|
except Exception:
|
|
114
197
|
# something went wrong, just ignore and continue
|
|
115
198
|
expected_type = Any
|
|
116
199
|
|
|
200
|
+
if value is None:
|
|
201
|
+
# just skip...
|
|
202
|
+
pass
|
|
203
|
+
elif isinstance(value, dict) and is_dict_type:
|
|
204
|
+
value = generic_obj_to_value(
|
|
205
|
+
expected_type=expected_type,
|
|
206
|
+
expected_type_args=expected_type_args,
|
|
207
|
+
value=value,
|
|
208
|
+
)
|
|
209
|
+
|
|
117
210
|
# Handle nested models
|
|
118
|
-
|
|
211
|
+
elif isinstance(value, dict) and issubclass(expected_type, BaseModel):
|
|
119
212
|
value = expected_type(**value)
|
|
120
213
|
|
|
121
214
|
elif isinstance(value, list):
|
|
122
|
-
|
|
123
|
-
if not type_args:
|
|
215
|
+
if not expected_type_args:
|
|
124
216
|
# if it's Any, it means we shouldn't really care about the type
|
|
125
217
|
if expected_type != Any:
|
|
126
218
|
value = expected_type(value)
|
|
127
219
|
else:
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
value
|
|
220
|
+
value = generic_obj_to_value(
|
|
221
|
+
expected_type=expected_type,
|
|
222
|
+
expected_type_args=expected_type_args,
|
|
223
|
+
value=value,
|
|
224
|
+
)
|
|
132
225
|
|
|
133
226
|
if ULTRA_LIST_ENABLED and isinstance(value, list):
|
|
134
227
|
value = convert_to_ultra_list(value)
|
|
@@ -159,3 +252,30 @@ class BaseModel:
|
|
|
159
252
|
else:
|
|
160
253
|
data = json_data
|
|
161
254
|
return cls(**data)
|
|
255
|
+
|
|
256
|
+
def serialize(
|
|
257
|
+
self,
|
|
258
|
+
separators=(",", ":"),
|
|
259
|
+
ensure_ascii=True,
|
|
260
|
+
sort_keys=True,
|
|
261
|
+
) -> bytes:
|
|
262
|
+
return json.dumps(
|
|
263
|
+
obj=self.to_dict(),
|
|
264
|
+
ensure_ascii=ensure_ascii,
|
|
265
|
+
separators=separators,
|
|
266
|
+
sort_keys=sort_keys,
|
|
267
|
+
)
|
|
268
|
+
|
|
269
|
+
def to_dict(self) -> dict:
|
|
270
|
+
annotations = get_my_field_types(self)
|
|
271
|
+
result_dict = {}
|
|
272
|
+
for key, _ in annotations.items():
|
|
273
|
+
if not isinstance(key, str):
|
|
274
|
+
continue
|
|
275
|
+
|
|
276
|
+
if key.startswith("__"):
|
|
277
|
+
# ignore private attributes
|
|
278
|
+
continue
|
|
279
|
+
|
|
280
|
+
result_dict[key] = value_to_normal_obj(getattr(self, key))
|
|
281
|
+
return result_dict
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|