在 Python 中读取 FTP 文件内容并同时用于 Pandas 和直接
- 作者: 一哥一射
- 来源: 51数据库
- 2022-10-21
问题描述
我正在尝试从内存中的 FTP 服务器下载文件,将其转换为数据帧,但也将其作为字节返回.代码如下:
I am trying to download a file from an FTP server in memory, transform it to a dataframe but also return it as bytes. Code as follows:
import io
import pandas as pd
from ftplib import FTP
ftp_connection.cwd(ftp_folder)
download_file = io.BytesIO()
ftp_connection.retrbinary('RETR ' + str(file_name), download_file.write)
download_file.seek(0)
file_to_process = pd.read_csv(download_file, engine='python')
在 Stack Overflow 上搜索后,建议只读取 io 流:
After searching on Stack Overflow, the suggestion was to just read the io stream:
download_file.read() ValueError: I/O operation on closed file.
不确定接下来要尝试什么,没有将文件写入某处并以字节形式再次读取.
Not sure what to try next, without writing the file somewhere and reading it again as bytes.
推荐答案
read_csv 可能会关闭文件".所以在调用 read_csv 之前请阅读它:
read_csv probably closes the "file". So read it before you call read_csv:
download_file.seek(0) contents = download_file.read() download_file.seek(0) file_to_process = pd.read_csv(download_file, engine='python')
推荐阅读
热点文章
Discord.py(重写)on_member_update 无法正常工作
0
Discord.py 在 vc 中获取用户分钟数
0
discord.py 重写 |为我的命令出错
0
Discord.py rewrite 如何 DM 命令?
0
播放音频时,最后一部分被切断.如何解决这个问题?(discord.py)
0
在消息删除消息 Discord.py
0
如何使 discord.py 机器人私人/直接消息不是作者的人?
0
(Discord.py) 如何获取整个嵌入内容?
0
Discord bot 尽管获得了许可,但不能提及所有人
0
Discord.py discord.NotFound 异常
0
