我在网站上使用python 3 urllib来发送请求,虽然我得到了响应但它只显示了html的一部分...这是我正在使用的代码:https://github.com/CyberChild/openCV/blob/master/stack_overflow.py
答案 0 :(得分:1)
你有两个问题。
txhSubmit
,但您输错了txhSunmit
http://59.145.203.105/Login.asp
import urllib
import urllib2
url = 'http://59.145.203.105/Login.asp'
values = {'txtRoll' : '1305024',
'txtEnroll' : '13139428723',
'txhSubmit' : 'Submit'
}
data = urllib.urlencode(values)
binary_data=data.encode()
req = urllib2.Request(url, binary_data)
response = urllib2.urlopen(req)
the_page = response.read().decode()
print the_page