You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
firebase = pyrebase.initialize_app(config)
storage = firebase.storage()
with open("filenames.txt", "r") as f:
for i in f.readlines():
try:
storage.child(i).download("downloads/")
The cell is getting executed but nothing is getting downloaded