久久久久久久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:“浮動對象不可下標)
主站蜘蛛池模板: 欧美日批视频 | 亚洲乱码国产乱码精品精软件 | 欧美一区免费 | 亚洲一区二区三区免费视频 | 青青草网址 | 亚洲精品一区二区三区精华液 | 亚洲成人日韩 | 日韩久久久久 | 亚洲天堂一区二区三区 | 三级黄色网址 | 久久久久久免费 | 亚洲国产欧美日韩 | 18国产免费视频动漫 | 日韩怡红院 | 黄色a一级| 国产精品高清在线观看 | 男女裸体无遮挡做爰 | 青青五月天 | 亚洲国产福利 | 亚洲成人毛片 | 久久久久久久久国产精品 | 国产在线观看一区 | 欧美一级免费 | 亚洲欧美日韩在线 | 国产精品第一 | 日韩精品免费视频 | 色天堂影院 | 欧美视频一二三区 | 免费网站黄 | 国内精品久久久久 | 亚洲欧美一区二区三区在线 | 色噜噜狠狠一区二区三区果冻 | 成人黄色在线 | 成人在线一区二区 | 福利视频一区二区 | 日本一级片在线观看 | 久草视频免费在线 | 在线中文av| 亚洲成人毛片 | 午夜黄色剧场 | 欧美特黄一级片 |