Explain why urllib.parse is not used in bch lib
Simon Volpert
6 years ago
159 | 159 | random.seed() |
160 | 160 | random.shuffle(explorers) |
161 | 161 | 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 | |
162 | 165 | _server['name'] = '.'.join(_server['url'].split('/')[2].split('.')[-2:]) |
163 | 166 | for _server in exchanges: |
164 | 167 | _server['name'] = '.'.join(_server['url'].split('/')[2].split('.')[-2:]) |