I want to upload my files based on the example Need a minimal Django file upload example, however I want to store the files not locally, but on another server with the use of FT
Try this
from storages.backends.ftp import FTPStorage fs = FTPStorage()
DEFAULT_FILE_STORAGE = 'storages.backends.ftp.FTPStorage' FTP_STORAGE_LOCATION = 'ftp://user:password@localhost:21'