URLError('未知的URL类型:https')

时间:2019-03-07 00:30:05

标签: python

我试图用漂亮的汤刮擦一个网站,但是当我试图打开URL时,我不断收到此错误URLError('unknown url type:https')。我尝试卸载并重新安装urllib,但是问题仍然存在。有谁知道问题出在哪里?

import bs4
from urllib.request import urlopen as ureq
from bs4 import BeautifulSoup as  soup

myurl = "https://www.newegg.com/Video-Cards-Video- 
Devices/Category/ID-38?pk=graphics%20card"

ureq(myurl) <- the expection is raised here

我尝试在stackoverflow中应用类似的引用问题,但是即使在url为https://www.newegg.com且没有任何特殊字符的情况下,它们仍然无法应用。

0 个答案:

没有答案