我试图使用
从网址中提取数据data = urllib.request.urlopen(str(self.url)).read()
我收到了错误
urllib.error.URLError: <urlopen error unknown url type: b'https>
如果我尝试使用
data = urlopen(urllib.parse.quote(str(self.url))).read()
我收到错误
ValueError: unknown url type 'b%27https%3A//some.site.com/d/f/some.image.enc%27'
我在这里做错了什么?