1

I have large number of pdfs to upload to google bucket. What is the fastest way to upload all these files to google bucket? I have tried uploading using drag and drop but it's taking a lot of time should I create a python script or is there any faster way to bulk upload data to GCP bucket.

Any help is appreciated.

White_Wolf
  • 55
  • 5
  • 2
    Not exactly python related, but [`gsutil cp`](https://cloud.google.com/storage/docs/gsutil/commands/cp) might be helpful, since it has a parallel option `-m` – C.Nivs Jul 06 '20 at 14:09

1 Answers1

2

Use gsutil, specifically the gsutil cp command.

Dustin Ingram
  • 20,502
  • 7
  • 59
  • 82