第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 Python 通過流將數(shù)據(jù)從 S3 傳輸?shù)?FTP 服務(wù)器

使用 Python 通過流將數(shù)據(jù)從 S3 傳輸?shù)?FTP 服務(wù)器

慕沐林林 2023-06-13 17:02:00
使用 Python,我想將匹配模式的文件sample1從 AWS S3 直接復(fù)制到 FTP 服務(wù)器,而無需下載到本地臨時(shí)位置。我嘗試了以下操作:import s3fsfrom ftplib import FTP_TLSs3 = s3fs.S3FileSystem(anon=False)pattern = 'sample1'rest = [i for i in list if pattern in i]restftp = FTP_TLS("ftp.test.com")ftp.login(user ='myUser', passwd = 'PassWrd')ftp.cwd("box_dest")for f in rest:    print(f)    with open(f, 'r') as fu:        ftp.storbinary('STOR ' + f, fu)我越來越:[u'test-bucket/abc/test/sample1.csv']test-bucket/abc/test/sample1.csvTraceback (most recent call last):  File "<stdin>", line 3, in <module>IOError: [Errno 2] No such file or directory: u'test-bucket/abc/test/sample1.csv'關(guān)于如何實(shí)現(xiàn)這一目標(biāo)的任何建議?謝謝!
查看完整描述

1 回答

?
紅顏莎娜

TA貢獻(xiàn)1842條經(jīng)驗(yàn) 獲得超13個(gè)贊

要從 S3 讀取文件,您需要使用S3FileSystem.open,而不是os.open.


在指定目標(biāo) FTP 路徑時(shí),您只需要從原始 S3 路徑中提取一個(gè)文件名。posixpath.basename應(yīng)該做。


for f in rest:

    print(f)

    with s3.open(f, 'r') as fu:

        ftp.storbinary('STOR ' + posixpath.basename(f), fu)


查看完整回答
反對(duì) 回復(fù) 2023-06-13
  • 1 回答
  • 0 關(guān)注
  • 191 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)