久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

在 Python 中讀取 FTP 文件內容并同時用于 Pandas 和

Read FTP file contents in Python and use it at the same time for Pandas and directly(在 Python 中讀取 FTP 文件內容并同時用于 Pandas 和直接)
本文介紹了在 Python 中讀取 FTP 文件內容并同時用于 Pandas 和直接的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我正在嘗試從內存中的 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')

這篇關于在 Python 中讀取 FTP 文件內容并同時用于 Pandas 和直接的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Why I cannot make an insert to Python list?(為什么我不能插入 Python 列表?)
Insert a column at the beginning (leftmost end) of a DataFrame(在 DataFrame 的開頭(最左端)插入一列)
Python psycopg2 not inserting into postgresql table(Python psycopg2 沒有插入到 postgresql 表中)
list extend() to index, inserting list elements not only to the end(list extend() 索引,不僅將列表元素插入到末尾)
How to add element in Python to the end of list using list.insert?(如何使用 list.insert 將 Python 中的元素添加到列表末尾?)
TypeError: #39;float#39; object is not subscriptable(TypeError:“浮動對象不可下標)
主站蜘蛛池模板: 国产精品美女久久久久aⅴ国产馆 | 日韩毛片 | 九九伊人sl水蜜桃色推荐 | 红桃视频一区二区三区免费 | 久久精品91 | 国产伦精品一区二区三区视频金莲 | 亚洲精品播放 | 在线欧美小视频 | 亚洲一区视频在线 | 日本在线免费观看 | 97精品国产97久久久久久免费 | 日韩欧美大片 | 午夜色婷婷 | 在线欧美 | 亚洲一区二区三区四区五区中文 | 欧美国产精品一区二区三区 | 久久丝袜 | 羞羞视频在线观看网站 | 中文字幕亚洲视频 | 福利社午夜影院 | 成人精品视频99在线观看免费 | 久久久久久亚洲精品 | 欧美精品在线播放 | 毛片毛片毛片毛片 | 草草草久久久 | 国产精品国产自产拍高清 | 中文字幕日韩在线观看 | 日日射夜夜骑 | 欧美日韩一 | 日韩一区二 | 久久精品国产免费高清 | 激情久久av一区av二区av三区 | 欧美一区二区三区精品免费 | 免费视频一区二区 | 在线视频亚洲 | 国产高清在线 | 日韩亚洲欧美一区 | 亚洲成人一区二区 | 伊人色综合久久久天天蜜桃 | 国产精品久久久久久久久久 | 二区在线观看 |