I'm not able to make this work, I want to upload a picture to firebase with pyrebase and the file(picture) goes through but it never loads on firebase/storage (see picture attached)
This is the code:
if request.method == 'POST':
upload = request.files['upload']
upload.save(os.path.join(UPLOAD_FOLDER, filename))
storage.child("images/test.jpg").put(UPLOAD_FOLDER+filename)