我想使用HTTP将我服务器上的python脚本中的一些参数发送到服务器上的php脚本。建议?
答案 0 :(得分:2)
使用urllib
:
import urllib
myurl = 'http://localhost/script.php?var1=foo&var2=bar'
# GET is the default action
response = urllib.urlopen(myurl)
# Output from the GET assuming response code was 200
data = response.read()