Python Forum
A working code to upload a file using sftp? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Networking (https://python-forum.io/forum-12.html)
+--- Thread: A working code to upload a file using sftp? (/thread-40974.html)



A working code to upload a file using sftp? - Python_FTP - Oct-23-2023

Can anyone share a presently working Python code that uploads a local file to a publicly accessible FTP server for testing purposes? I have tried several codes published in various web pages, and each time some exception was raised.


RE: A working code to upload a file using sftp? - gulshan212 - Nov-06-2023

Well, I found too many codes for the same thing, can you try the below code, I hope you can get an idea of what you are looking for.

Quote:from ftplib import FTP

# FTP server details
ftp_host = 'ftp.example.com' # Replace with your FTP server address
ftp_user = 'your_username' # Replace with your FTP username
ftp_pass = 'your_password' # Replace with your FTP password

# Local file to upload
local_file_path = 'local_file.txt' # Replace with the path to your local file

# Remote directory where you want to upload the file
remote_directory = '/public_html/' # Replace with the desired remote directory

try:
# Connect to the FTP server
ftp = FTP(ftp_host)
ftp.login(user=ftp_user, passwd=ftp_pass)

# Change to the target directory on the server
ftp.cwd(remote_directory)

# Open the local file in binary mode for uploading
with open(local_file_path, 'rb') as local_file:
# Upload the file to the FTP server
ftp.storbinary('STOR ' + local_file_path, local_file)

print(f"File '{local_file_path}' uploaded successfully to '{remote_directory}'")

# Close the FTP connection
ftp.quit()

except Exception as e:
print(f"An error occurred: {e}")

Thanks


RE: A working code to upload a file using sftp? - Gribouillis - Nov-07-2023

Usually, I just spawn a subprocess that calls the lftp command.


RE: A working code to upload a file using sftp? - Pedroski55 - Nov-29-2023

Why not just use Filezilla?

Filezilla uses sftp.

When I make my pathetically simple little webpages, I always make them and test them on this laptop. When everything works the way I want, I upload with Filezilla!

Unless you are are serial uploader!?!