我想使用GCP从web下载一个文件,并将其存储在中。
例如,我需要下载这个文件:
我尝试过这个代码():
from google.cloud import storage
def write_file():
client = storage.Client()
bucket = client.get_bucket('bucket-name')
blob = bucket.blob('path/to/new-blob.txt')
with blob.open(mode='w') as f:
for l