MCPcopy Create free account
hub / github.com/ccxt/ccxt / safe_string_lower_2

Method safe_string_lower_2

python/ccxt/base/exchange.py:855–857  ·  view source on GitHub ↗
(dictionary, key1, key2, default_value=None)

Source from the content-addressed store, hash-verified

853
854 @staticmethod
855 def safe_string_lower_2(dictionary, key1, key2, default_value=None):
856 value = Exchange.safe_string_2(dictionary, key1, key2, default_value)
857 return value.lower() if value is not None else value
858
859 @staticmethod
860 def safe_string_upper_2(dictionary, key1, key2, default_value=None):

Callers 15

test_safe_methodsFunction · 0.95
parse_orderMethod · 0.80
fetch_accountsMethod · 0.80
parse_tradeMethod · 0.80
get_margin_modeMethod · 0.80
parse_transactionMethod · 0.80
parse_tradeMethod · 0.80
parse_orderMethod · 0.80
parse_tradeMethod · 0.80
parse_orderMethod · 0.80
parse_orderMethod · 0.80
parse_orderMethod · 0.80

Calls 1

safe_string_2Method · 0.80

Tested by 1

test_safe_methodsFunction · 0.76