用python提取url链接中的域名与端口

Linux就该这么学
  1. import urllib  
  2. proto, rest = urllib.splittype("http://www.baidu.com/11/12.htm")  
  3. host, rest = urllib.splithost(rest)  
  4. print host  
  5. host, port = urllib.splitport(host)  
  6. if port is None:  
  7.    port = 80  
  8. print port  

本文由 CentOS中文站 - 专注Linux技术 作者:centos 发表,其版权均为 CentOS中文站 - 专注Linux技术 所有,文章内容系作者个人观点,不代表 CentOS中文站 - 专注Linux技术 对观点赞同或支持。如需转载,请注明文章来源。

相关文章

发表评论

邮箱地址不会被公开。 必填项已用*标注