# 去看一下requests 这个模块
url = 'http://httpbin.org/post'd = {'key1': 'value1', 'key2': 'value2'}
r = requests.post(url, data=d)
print r.text
# 去看一下requests 这个模块
url = 'http://httpbin.org/post'd = {'key1': 'value1', 'key2': 'value2'}
r = requests.post(url, data=d)
print r.text