Como posso baixar os arquivos dentro de uma pasta na plataforma Google Cloud usando python?
from google.cloud import storage
client = storage.Client()
bucket = client.get_bucket([bucket_name])
blob = bucket.get_blob([path to the .txt file])
blob.download_to_filename([local path to the downloaded .txt file])
Como posso ajustar meu código python para adicionar algo comofor filename in os.listdir(path):
apenas copiar todos os arquivos em uma determinada pasta localmente