trd-utils 0.0.44__py3-none-any.whl → 0.0.45__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.

Potentially problematic release.


This version of trd-utils might be problematic. Click here for more details.

trd_utils/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
1
 
2
- __version__ = "0.0.44"
2
+ __version__ = "0.0.45"
3
3
 
@@ -77,7 +77,7 @@ logger = logging.getLogger(__name__)
77
77
  # specific to the current session that is fetching them,
78
78
  user_api_identity_cache: dict[int, int] = {}
79
79
 
80
- __positions_hidden_warn_map: dict[str, bool] = {}
80
+ _positions_hidden_warn_map: dict[str, bool] = {}
81
81
 
82
82
 
83
83
  class BXUltraClient(ExchangeBase, IPriceFetcher):
@@ -924,6 +924,7 @@ class BXUltraClient(ExchangeBase, IPriceFetcher):
924
924
  no_warn: bool = False,
925
925
  min_margin: Decimal = 0,
926
926
  ) -> UnifiedTraderPositions:
927
+ global _positions_hidden_warn_map
927
928
  perp_positions = []
928
929
  std_positions = []
929
930
  perp_ex: str = None
@@ -944,8 +945,8 @@ class BXUltraClient(ExchangeBase, IPriceFetcher):
944
945
  if not no_warn:
945
946
  if err_str.find("positions hidden") != -1:
946
947
  warn_key = f"perp_{uid}"
947
- if not __positions_hidden_warn_map.get(warn_key, False):
948
- __positions_hidden_warn_map[warn_key] = True
948
+ if not _positions_hidden_warn_map.get(warn_key, False):
949
+ _positions_hidden_warn_map[warn_key] = True
949
950
  logger.warning(f"Failed to fetch perp positions of {uid}: {ex}")
950
951
  perp_ex = ex
951
952
 
@@ -963,8 +964,8 @@ class BXUltraClient(ExchangeBase, IPriceFetcher):
963
964
  if not no_warn:
964
965
  if err_str.find("positions hidden") != -1:
965
966
  warn_key = f"std_{uid}"
966
- if not __positions_hidden_warn_map.get(warn_key, False):
967
- __positions_hidden_warn_map[warn_key] = True
967
+ if not _positions_hidden_warn_map.get(warn_key, False):
968
+ _positions_hidden_warn_map[warn_key] = True
968
969
  logger.warning(f"Failed to fetch std positions of {uid}: {ex}")
969
970
  std_ex = ex
970
971
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: trd_utils
3
- Version: 0.0.44
3
+ Version: 0.0.45
4
4
  Summary: Common Basic Utils for Python3. By ALiwoto.
5
5
  Keywords: utils,trd_utils,basic-utils,common-utils
6
6
  Author: ALiwoto
@@ -1,4 +1,4 @@
1
- trd_utils/__init__.py,sha256=tbiVO2iKTOuxM7n8BiQ6erJJoUjaUk2uF19lQjsONoQ,25
1
+ trd_utils/__init__.py,sha256=vxgxuc3sNr3iokfiyshHWxXK-ULBlGLT71djL9Xot1E,25
2
2
  trd_utils/cipher/__init__.py,sha256=V05KNuzQwCic-ihMVHlC8sENaJGc3I8MCb4pg4849X8,1765
3
3
  trd_utils/common_utils/float_utils.py,sha256=aYPwJ005LmrRhXAngojwvdDdtRgeb1FfR6hKeQ5ndMU,470
4
4
  trd_utils/common_utils/wallet_utils.py,sha256=OX9q2fymP0VfIWTRIRBP8W33cfyjLXimxMgPOsZe-3g,727
@@ -12,7 +12,7 @@ trd_utils/exchanges/blofin/blofin_client.py,sha256=JVimaxGHRVviQHZbPY1gek8ICPl8-
12
12
  trd_utils/exchanges/blofin/blofin_types.py,sha256=bQx0opCgHwcuC-5TxiVA4VQr17A1x7u7QIMdcIrROAg,4315
13
13
  trd_utils/exchanges/bx_ultra/__init__.py,sha256=8Ssy-eOemQR32Nv1-FoPHm87nRqRO4Fm2PU5GHEFKfQ,80
14
14
  trd_utils/exchanges/bx_ultra/bx_types.py,sha256=7Ga6IYHQNRDbhWXmS1J0NxpcR9HUJ8ZwQGh-1EvNRqM,36687
15
- trd_utils/exchanges/bx_ultra/bx_ultra_client.py,sha256=iYePP32gSAnBuFWAyr5f_MkE4i8zPMNTsIdBom8iGVs,41534
15
+ trd_utils/exchanges/bx_ultra/bx_ultra_client.py,sha256=pB97gs1PHWNbE6M_81Oppf_4unFkUTQtIJEfhKEu_Uk,41571
16
16
  trd_utils/exchanges/bx_ultra/bx_utils.py,sha256=PwapomwDW33arVmKIDj6cL-aP0ptu4BYy_lOCqSAPOo,1392
17
17
  trd_utils/exchanges/errors.py,sha256=P_NTuc389XL7rFegomP59BydWmHv8ckiGyNU-_l5qNQ,167
18
18
  trd_utils/exchanges/exchange_base.py,sha256=eAORzCci78b2-IrslkQnMIbzVJGb6YYzNzniCUHG-jg,7891
@@ -35,7 +35,7 @@ trd_utils/types_helper/decorators.py,sha256=ziQGDKV0RnhMG6gBPAz244Ug3j6ayr0iKXeu
35
35
  trd_utils/types_helper/model_config.py,sha256=uvyhdGHQZ1A_I5RUbCgzlDk6MxWL6RLV8r0cdVi6nBk,60
36
36
  trd_utils/types_helper/ultra_list.py,sha256=01WQSkx0G7lD9O9XcXccexniNwyuQ9LwVOeixxr4tWQ,1178
37
37
  trd_utils/types_helper/utils.py,sha256=Xq4SZG4NkkGzJyOBs9huAvzl2YcCZ7ZRjfOHol3o-Kc,569
38
- trd_utils-0.0.44.dist-info/LICENSE,sha256=J1EP2xt87RjjmsTV1jTjHDQMLIM9FjdwEftTpw8hyv4,1067
39
- trd_utils-0.0.44.dist-info/METADATA,sha256=_wauWPTsKhQ-QX8rSbCP9FRRxWFCoYnU7L8dETQSEQ4,1179
40
- trd_utils-0.0.44.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
41
- trd_utils-0.0.44.dist-info/RECORD,,
38
+ trd_utils-0.0.45.dist-info/LICENSE,sha256=J1EP2xt87RjjmsTV1jTjHDQMLIM9FjdwEftTpw8hyv4,1067
39
+ trd_utils-0.0.45.dist-info/METADATA,sha256=p8f1kTQ54fXWZxFtp96-XAHlbXK9WWY81mECj4DXU1Y,1179
40
+ trd_utils-0.0.45.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
41
+ trd_utils-0.0.45.dist-info/RECORD,,