使用python urllib / httplib处理.cst文件

时间:2012-08-13 12:02:47

标签: python cgi urllib

我想通过“.cst”文件连接到网络设备。如果你想在浏览器中打开它,你必须输入

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

如何使用urllib或其他软件包发送此请求?

坦克寻求帮助

巴斯蒂

3 个答案:

答案 0 :(得分:1)

使用urllib

import urllib

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

此脚本的变量data将存储您通过的URL(响应正文)的内容。

答案 1 :(得分: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()

答案 2 :(得分: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)