python3 错误“No connection adapters were found for”
python3 版本
检查连接的时候,出现错误“requests.exceptions.InvalidSchema: No connection adapters were found for 'http://oil.cngold.com.cn/2016...'”实在是不知道啥原因?很是奇怪
代码如下:
import requests
from bs4 import BeautifulSoup
filepath = 'E:/links.txt'
with open(filepath,'rb') as f:
links = f.readlines()
for link in links:
link = link.strip().decode()
print(link)
html = requests.get(link)
soup = BeautifulSoup(html.text)
print(soup.title.get_text())
报错信息如下:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以运行啊,
这类问题参考
Requests : No connection adapters were found for, error in Python3