2012-08-13 73 views
0

我想通過「.cst」文件連接到Web應用裝置。如果你想在瀏覽器中打開它必須鍵入使用python urllib處理.cst文件/ httplib

http://x.x.x.x/index.cst?Lang=en&login=blafoo&passwd=foobla 

如何發送此請求與urllib或其他包?

坦克的幫助

巴斯蒂

+0

你有沒有試過?問題是什麼? – newtover 2012-08-13 12:04:40

回答

1
import urllib.request 
import urllib.parse 
params = urllib.parse.urlencode({'Lang': 'en', 'login': 'blafoo', 'passwd': 'foobla'}) 
f = urllib.request.urlopen("http://x.x.x.x/index.cst?%s" % params) 
f.read() 
1

隨着urllib

import urllib 

site = urllib.urlopen('http://x.x.x.x/index.cst?Lang=en&login=blafoo&passwd=foobla') 
data = site.read() 

此腳本的變量data將存儲你通過了你的網址有什麼內容(響應體)。

1

我建議使用requests(所有時尚的年輕人使用;!),雖然使用urllib答案已經給出。與要求:

import requests 
response = requests.get('http://x.x.x.x/index.cst?Lang=en&login=blafoo&passwd=foobla') 
# response.text contains the response contents 
# response.status_code gives the response status code (200, 201, 404, etc) 

額外的信貸:

import requests 
data = {'Lang': 'en', 'login': 'blafoo', 'passwd': 'foobla'} 
response = requests.get('http://x.x.x.x/index.cst', params=data)