久久久久久久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级高清免费大片 特黄色一级毛片 | 日韩欧美在线播放 | 国产精品久久久久久吹潮 | 欧美中文字幕一区二区三区亚洲 | 日韩2020狼一二三 | 美美女高清毛片视频免费观看 | 草草视频在线免费观看 | 国产精品美女久久久久久久久久久 | 国产一区二区三区久久久久久久久 | 黄色大片在线免费观看 | 亚洲午夜小视频 | 欧美亚洲成人网 | 国产欧美一级 | 国产精品毛片一区二区三区 | 成人午夜免费福利视频 | 天天夜干| 午夜a级理论片915影院 | 精品久久国产 | 青青伊人久久 | 在线精品亚洲欧美日韩国产 | 黄色av免费网站 | 欧洲一级毛片 | 国产一区黄色 | 国产第一页在线播放 | 亚洲一区中文字幕在线观看 | 8x国产精品视频一区二区 | 国产精品亚洲成在人线 | 亚洲欧美在线一区 | 日韩精品视频在线 | xx性欧美肥妇精品久久久久久 | 91视视频在线观看入口直接观看 | 天天人人精品 | 国产免费一级片 | 日韩精品 电影一区 亚洲 | 久久99一区二区 | 国产成人在线一区二区 | 精品国产欧美一区二区三区不卡 | 欧洲毛片 | 自拍视频在线观看 | 国产视频黄色 |