久久久久久久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:“浮動對象不可下標)
主站蜘蛛池模板: 日韩欧美操 | 91精品午夜窝窝看片 | 精品久久久久久 | 国产午夜精品一区二区三区嫩草 | h视频免费在线观看 | 久久精品99国产精品 | 精品国产乱码久久久久久中文 | 天天综合成人网 | 日韩一区二区三区在线观看视频 | 亚洲国产一区在线 | 亚洲一区日韩 | 日韩国产专区 | 午夜成人免费视频 | 日韩淫片免费看 | 欧美精品一区二区三区在线播放 | 国产精品中文字幕在线播放 | 美女爽到呻吟久久久久 | 一区二区三区四区国产 | 一区| 鸡毛片 | 91原创视频在线观看 | 中文字幕日韩欧美 | 91精品国产综合久久久亚洲 | 欧美国产大片 | 青青久在线视频 | 亚洲精品视频播放 | 欧美一级二级三级视频 | 亚洲3p| 亚洲一级在线 | 找个黄色片 | 国产精品久久久久aaaa | 一区二区三区免费 | 久久久久久综合 | 一区二区三区在线观看免费视频 | 韩国欧洲一级毛片 | 香蕉一区 | 黄色成人在线观看 | 久久精品aaa | 久久久夜 | 亚洲人在线播放 | 国产三级国产精品 |