how do uploading audio to Firebase storage python, 1.wav.wav is a audio file that i want to upload to my firebase
import pyrebase
config = {
"apiKey": "xxxxxxxxxxxxxxxxxx",
"authDomain": "xxxxxxxxxxx",
"projectId": "xxxxxxxxxxx",
"storageBucket": "xxxxxxxxxxxxxx",
"messagingSenderId": "xxxxxxxxxxxxx",
"appId": "xxxxxxxxxxxxxxxxxxxx",
"measurementId": "G-5GCDEC526E"
}
firebase = pyrebase.initialize_app(config)
localpath="1.wav.wav"
cloudpath="audios/audi1.wav"
firebase.storage().child(cloudpath).put(localpath)
I see databaseURL missing, double check your config and add it as shown below: