从URL获取协议+主机名

从URL获取协议+主机名,第1张

从URL获取协议+主机名

你应该能够做到urlparse(docs:python2,python3):

from urllib.parse import urlparse# from urlparse import urlparse  # Python 2parsed_uri = urlparse('http://stackoverflow.com/questions/1234567/blah-blah-blah-blah' )result = '{uri.scheme}://{uri.netloc}/'.format(uri=parsed_uri)print(result)# gives'http://stackoverflow.com/'


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4935569.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存