我想用urllib2
請求頁面的像這樣的內容:蟒蛇urllib而取
http://www.google.com/key?=AqIkNRT0ZoH2c5E6u4Lu&access=lawrence
我的Python代碼至今:
for key in keysfile.readlines():
host="http://www.google.com/key?=%s&access=%s"%(key,access)
reg = urllib2.Request(host)
response = urllib2.urlopen(reg)
check = response.read()
print(check)
但問題發生我覺得有什麼不對
哪些問題?你得到哪個錯誤? – maurelio79
你可以使用請求庫。 – Back2Basics
看起來'?'和'key'在url中被交換。一般來說,您應該對查詢部分進行urlencode編碼,例如'url ='http://example.com/?' + urlencode(key = key,access = access))' – jfs