用python提取url链接中的域名与端口
python学习笔记
2014年9月21日
- import urllib
- proto, rest = urllib.splittype("http://www.baidu.com/11/12.htm")
- host, rest = urllib.splithost(rest)
- print host
- host, port = urllib.splitport(host)
- if port is None:
- port = 80
- print port
本文由 CentOS中文站 - 专注Linux技术 作者:centos 发表,其版权均为 CentOS中文站 - 专注Linux技术 所有,文章内容系作者个人观点,不代表 CentOS中文站 - 专注Linux技术 对观点赞同或支持。如需转载,请注明文章来源。