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

Method safe_string_upper_2

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

Source from the content-addressed store, hash-verified

858
859 @staticmethod
860 def safe_string_upper_2(dictionary, key1, key2, default_value=None):
861 value = Exchange.safe_string_2(dictionary, key1, key2, default_value)
862 return value.upper() if value is not None else value
863
864 @staticmethod
865 def safe_integer_2(dictionary, key1, key2, default_value=None):

Callers 15

test_safe_methodsFunction · 0.95
parse_transferMethod · 0.80
parse_orderMethod · 0.80
withdrawMethod · 0.80
parse_orderMethod · 0.80
handle_errorsMethod · 0.80
parse_tickerMethod · 0.80
parse_tradeMethod · 0.80
withdrawMethod · 0.80
withdrawMethod · 0.80
parse_orderMethod · 0.80
create_order_requestMethod · 0.80

Calls 1

safe_string_2Method · 0.80

Tested by 1

test_safe_methodsFunction · 0.76