I have a URL (https://example.com/myfile.txt)
of a file and I want to upload it to my bucket (gs://my-sample-bucket)
on Google Cloud Storage.
What I am currently doing is:
Downloading the file to my system using the requests library.
Uploading that file to my bucket using python function.
Is there any way I can upload the file directly using the URL.