python3中出现“未知URL类型:urlopen错误”错误

时间:2017-05-04 08:51:12

标签: python python-3.x nlp subprocess text-mining

这是我的代码,我想从用户输入的网址中提取网页的“标题”,但它不起作用。

>>> url = raw_input('Please enter website URL : ') 
Please enter website URL : http://www.google.com/ 
>>> h = urllib.urlopen(url) >>> code = h.read() 
>>> pattern = re.compile(r'<title>(.+)</title>', re.M) 
>>> title = re.findall(pattern, code) 
>>> print("%s title is : %s") % (url, title) 
>>>output: http://www.google.com/ title is : ['Google']
  

答案必须是这样的:

<li id="whatever" value="112">Item1.1.2</li>

1 个答案:

答案 0 :(得分:2)

在主题中它显示为htttp,因此当您输入其中以进行测试时,通过添加额外的http,您看起来只是错误t