尝试使用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')
答案 0 :(得分:2)
您需要使用.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)对直接放入内存中的文件对象没有任何支持。