) и загрузите файлы.

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])

могу настроить свой код Python, чтобы добавить что-то вродеfor filename in os.listdir(path): просто скопировать все файлы в определенной папке там локально

Ответы на вопрос(1)

Ваш ответ на вопрос