Search code examples
pythonfile-transferserver-to-server

Transfer Files from one cloud storage to another


How to transfer files from one cloud storage to another. The files are CSV.

Where is the best place to start in relation to this problem?

For the time being the file just needs to transfer the files every week via manual execution. Eventually the files will be transferred on a scheduled basis.


Solution

  • You can start searching for this sites APIs. For example, Dropbox has a very well documented API for python.

    If you want to automate your script every X days/hours/etc, you can make use of cron if you are running Unix based systems.

    Hope that helped.