gpt4 book ai didi

python - TypeError : expected str, 字节或 os.PathLike 对象,而不是 _io.BytesIO

转载 作者:太空宇宙 更新时间:2023-11-04 00:20:27 25 4
gpt4 key购买 nike

尝试使用 ssh 从 Internet 上传文件到我的服务器。有以下代码可以很好地上传本地文件,但我不知道还需要做什么才能让图片字节对象上传。

from io import BytesIO
import requests
import pysftp
url = 'https://vignette.wikia.nocookie.net/disney/images/d/db/Donald_Duck_Iconic.png'

cnopts = pysftp.CnOpts()
cnopts.hostkeys = None
response = requests.get(url)
netimage = BytesIO(response.content) #imagefromurl

srv = pysftp.Connection(host="12.34.567.89", username="root123",
password="password123",cnopts=cnopts)

with srv.cd('/var/www'): #srvdir
#srv.put('C:\Program Files\Python36\LICENSE.txt') #local file test
srv.put(netimage)

print('Complete')

最佳答案

您需要使用 .open() method获取类似文件的对象,然后使用 shutil.copyfileobj() 复制您的数据:

import shutil

with srv.cd('/var/www'):
with srv.open(image_filename, 'w') as remote_file:
shutil.copyfileobj(netimage, remote_file)

Paramiko(以及扩展名 pysftp)不支持直接放置内存中的文件对象。

关于python - TypeError : expected str, 字节或 os.PathLike 对象,而不是 _io.BytesIO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49267558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com