0

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

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

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

坦克寻求帮助

巴斯蒂

4

3 回答 3

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(响应正文)中获得的内容。

于 2012-08-13T12:06:15.337 回答
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()
于 2012-08-13T12:54:32.743 回答
1

我建议使用请求(所有酷孩子都使用它!;),尽管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)
于 2012-08-13T12:54:55.830 回答