Simon Volpert minipos / b6a1613
Explain why urllib.parse is not used in bch lib Simon Volpert 6 years ago
1 changed file(s) with 3 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
159159 random.seed()
160160 random.shuffle(explorers)
161161 for _server in explorers:
162 # Using urllib.parse here would require an instruction similar to this:
163 # _server['name'] = '.'.join(urllib.parse.urlparse(_server['url'])[1].split('.')[-2:])
164 # Which is neither any shorter, nor simpler, AND requires an additional import to work
162165 _server['name'] = '.'.join(_server['url'].split('/')[2].split('.')[-2:])
163166 for _server in exchanges:
164167 _server['name'] = '.'.join(_server['url'].split('/')[2].split('.')[-2:])