我有一台服务器在运行,它总是在监听value
字段
我可以通过网址浏览器发出请求,
Eg: http://192.168.1.101/value=1
如何从Python发出这样的请求,我尝试了上面的代码,但似乎没有用。
from urllib.parse import urlencode
from urllib.request import Request, urlopen
url = 'http://192.168.1.101/value=1'
request = Request(url)
我的服务器正在听上面的格式化。(GET)
GET /value=1 HTTP/1.1
干杯!
答案 0 :(得分:2)
使用请求模块
import requests as req
url = 'http://192.168.1.101/value=1'
resp = req.get(url)
print(resp.text) # Printing response