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

Method implode_params

python/ccxt/base/exchange.py:1184–1189  ·  view source on GitHub ↗
(string, params)

Source from the content-addressed store, hash-verified

1182
1183 @staticmethod
1184 def implode_params(string, params):
1185 if isinstance(params, dict):
1186 for key in params:
1187 if not isinstance(params[key], list):
1188 string = string.replace('{' + key + '}', str(params[key]))
1189 return string
1190
1191 @staticmethod
1192 def urlencode(params={}, doseq=False, sort=False):

Callers 15

test_implode_paramsFunction · 0.95
resolve_pathMethod · 0.95
implode_hostnameMethod · 0.95
signMethod · 0.80
signMethod · 0.80
signMethod · 0.80
signMethod · 0.80
signMethod · 0.80
signMethod · 0.80
signMethod · 0.80
signMethod · 0.80
signMethod · 0.80

Calls 1

replaceMethod · 0.80

Tested by 1

test_implode_paramsFunction · 0.76