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])
Run Code Online (Sandbox Code Playgroud)
How can i adjust my python code to add something like for filename in os.listdir(path): to just copy all the files in a certain folder on there locally