Python FTP 应用程序中的代理
我正在用Python ftplib 开发一个FTP 客户端。如何为其添加代理支持(我见过的大多数 FTP 应用程序似乎都有它)?我特别考虑 SOCKS 代理,但也考虑其他类型... FTP、HTTP(甚至可以将 HTTP 代理与 FTP 程序一起使用吗?)
有什么想法吗?
I'm developing an FTP client in Python ftplib. How do I add proxies support to it (most FTP apps I have seen seem to have it)? I'm especially thinking about SOCKS proxies, but also other types... FTP, HTTP (is it even possible to use HTTP proxies with FTP program?)
Any ideas how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
根据此来源。
取决于代理,但常见的方法是 ftp 到代理,然后使用
目标服务器的用户名和密码。
例如 ftp.example.com:
在 Python 代码中:
As per this source.
Depends on the proxy, but a common method is to ftp to the proxy, then use
the username and password for the destination server.
E.g. for ftp.example.com:
In Python code:
您可以在
urllib2
中使用 ProxyHandler 。You can use the ProxyHandler in
urllib2
.我遇到了同样的问题,需要使用 ftplib 模块(而不是用 URLlib2 重写所有脚本)。
我设法编写了一个脚本,在套接字层(由 ftplib 使用)上安装透明的 HTTP 隧道。
现在,我可以透明地通过 HTTP 进行 FTP!
你可以在那里得到它:
http://code. activestate.com/recipes/577643-transparent-http-tunnel-for-python-sockets-to-be-u/
I had the same problem and needed to use the ftplib module (not to rewrite all my scripts with URLlib2).
I have managed to write a script that installs transparent HTTP tunneling on the socket layer (used by ftplib).
Now, I can do FTP over HTTP transparently !
You can get it there:
http://code.activestate.com/recipes/577643-transparent-http-tunnel-for-python-sockets-to-be-u/
修补内置套接字库肯定不会适合每个人,但我的解决方案是修补
socket.create_connection()
以在主机名与白名单匹配时使用 HTTP 代理:我还必须创建ftplib.FTP 的子类,它忽略
PASV
和EPSV
FTP 命令返回的host
。用法示例:Patching the builtin socket library definitely won't be an option for everyone, but my solution was to patch
socket.create_connection()
to use an HTTP proxy when the hostname matches a whitelist:I also had to create a subclass of ftplib.FTP that ignores the
host
returned byPASV
andEPSV
FTP commands. Example usage:标准模块 ftplib 不支持代理。看来唯一的解决方案是编写您自己的自定义版本的
ftplib
。Standard module
ftplib
doesn't support proxies. It seems the only solution is to write your own customized version of theftplib
.以下是使用
requests
的解决方法,使用不支持 CONNECT 隧道的鱿鱼代理进行了测试:Here is workaround using
requests
, tested with a squid proxy that does NOT support CONNECT tunneling: