我想像urllib.request.openurl(url)一样获得结果
但是我不能使用urllib或任何库
我必须自己编写GET请求
但是像b'GET / HTTP/1.0 \r\n\r\n'
这样的简单GET请求不会返回html文档
有什么办法吗?
答案 0 :(得分:0)
您正在运行什么版本的python? 2.7或3.x?
pip install requests
import requests
url = 'https://www.google.com/'
r = requests.get(url)
r.text
初学者使用的Python:https://www.pythonforbeginners.com/requests/using-requests-in-python