Is it possible to read FTP files without writing them using Python?(是否可以在不使用 Python 编写的情况下读取 FTP 文件?)
问题描述
我正在尝试使用 Python 的 ftplib 读取文件而不写入它们.大致相当于:
I am trying to read files using Python's ftplib without writing them. Something roughly equivalent to:
def get_page(url):
try:
return urllib.urlopen(url).read()
except:
return ""
但使用 FTP.
我试过了:
def get_page(path):
try:
ftp = FTP('ftp.site.com', 'anonymous', 'passwd')
return ftp.retrbinary('RETR '+path, open('page').read())
except:
return ''
但这不起作用.文档中的唯一示例涉及使用 ftp.retrbinary('RETR README', open('README', 'wb').write)
格式编写文件.是否可以不先写入就读取ftp文件?
but this doesn't work. The only examples in the docs involve writing files using the ftp.retrbinary('RETR README', open('README', 'wb').write)
format. Is it possible to read ftp files without writing first?
推荐答案
好吧,答案就在眼前:FTP.retrbinary
方法接受作为第二个参数的函数引用每当从 FTP 连接检索文件内容时都会调用它.
Well, you have the answer right in front of you: The FTP.retrbinary
method accepts as second parameter a reference to a function that is called whenever file content is retrieved from the FTP connection.
这是一个简单的例子:
#!/usr/bin/env python
from ftplib import FTP
def writeFunc(s):
print "Read: " + s
ftp = FTP('ftp.kernel.org')
ftp.login()
ftp.retrbinary('RETR /pub/README_ABOUT_BZ2_FILES', writeFunc)
你应该实现 writeFunc
以便它实际上将读取的数据附加到一个内部变量,就像这样,它使用一个可调用的对象:
You should implement writeFunc
so that it actually appends the data read to an internal variable, something like this, which uses a callable object:
#!/usr/bin/env python
from ftplib import FTP
class Reader:
def __init__(self):
self.data = ""
def __call__(self,s):
self.data += s
ftp = FTP('ftp.kernel.org')
ftp.login()
r = Reader()
ftp.retrbinary('RETR /pub/README_ABOUT_BZ2_FILES', r)
print r.data
更新:我意识到 Python 标准库中有一个模块专门用于此类事情,BytesIO
:
Update: I realized that there is a module in the Python standard library that is meant for this kind of things, BytesIO
:
#!/usr/bin/env python
from ftplib import FTP
from io import BytesIO
ftp = FTP('ftp.kernel.org')
ftp.login()
r = BytesIO()
ftp.retrbinary('RETR /pub/README_ABOUT_BZ2_FILES', r.write)
print r.getvalue()
这篇关于是否可以在不使用 Python 编写的情况下读取 FTP 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以在不使用 Python 编写的情况下读取 FTP 文


基础教程推荐
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01