Python:如何在内部/ localhost发出HTTP请求

时间:2010-10-08 05:33:54

标签: php python http

我想使用HTTP将我服务器上的python脚本中的一些参数发送到服务器上的php脚本。建议?

1 个答案:

答案 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()