1

我正在编写一个 python (2.7.3) 脚本,它将定期从运行 Raspbian 的 Raspberry Pi 登录到 Mint.com。但是,我的脚本挂在 SSL 握手上以下代码在运行 Python 2.7.3 的 OSX 上运行良好:

import mechanize
br = mechanize.Browser()
br.open("https://wwws.mint.com/login.event")

但是,当我在运行 Python 2.7.3 的 Raspberry Pi 上运行完全相同的代码时,open永远不会返回。当我取消运行 ( ctrl+c) 时,我得到一个很长的回溯,以:

File "/usr/lib/python2.7/ssl.py", line 305, in do_handshake
  self._sslobj.do_handshake()

我没有任何问题打开https://www.mint.com,所以似乎问题是login.event,这是提交登录凭据所必需的。

知道为什么会这样吗?

4

1 回答 1

1

我在使用 Ubuntu LTS 12.04 时遇到了这样的问题。我在运行最新 Mint Debian 版(订阅传入存储库)的机器上尝试了相同的代码,问题得到解决。

于 2013-11-21T13:52:06.837 回答