sftp.get(remotepath, localpath) #for sftp to localdrive
upload = client.folder(Folder_id).upload(localpath) #localdrive to box
Using Python I'm downloading files from SFTP server to local drive and then from local drive to my box.
Is that possible to upload my files to box directly from SFTP server using Python without saving the file to local drive?
I'm using Paramiko and Box SDK.