1

I want to copy the files from Google Drive to OneDrive using any APIs in Python. Google provides some APIs but I don't see anything related to copy the files to another cloud.

One way to achieve this is like download files from Google Drive using Google Drive API and again upload to OneDrive.

Please share some inputs if there is a way to achieve this.

eyllanesc
  • 235,170
  • 19
  • 170
  • 241

1 Answers1

0

If you are running both services on your desktop, you could just use python to move the files from one folder to another. See How to move a file in Python. By moving the file from your google drive folder to your onedrive folder, the services should automatically sync and upload the files.

(As an aside, another solution if you don't care how the problem gets solved a service like https://publist.app might be of use).

Josh Desmond
  • 640
  • 2
  • 10
  • 19