一個網站,我是新來的蟒蛇,我試圖在Python3.3python腳本查詢到本地機器
import urllib.parse
import urllib.request
url = 'http://start.csail.mit.edu/'
values = { 'query': 'What is the capital of China?' }
data = urllib.parse.urlencode(values)
binary_data = data.encode('ascii')
req = urllib.request.Request(url, binary_data)
response = urllib.request.urlopen(req)
the_page = response.read()
print (the_page)
這裏打印結果只是給我的HTML代碼「http://start.csail.mit.edu/」實施a python script to query MIT START website from local machine 概念而不是由此產生的答案頁。任何關於我可能做錯的想法。
在此先感謝
'http://start.csail.mit.edu/answer.php?query= [...] ' –