Pyrebase
Pyrebase copied to clipboard
Second .get().val() returns None
python 3.8.4
store = {
'app':{
'cfg1':'one',
'cfg2':'two'
}
}
a = firebase.child('store/app/cfg1').get().val()
b = firebase.child('store/app/cfg2').get().val()
print(a, b) #>>> one None