thisbejim / Pyrebase

A simple python wrapper for the Firebase API.
2.05k stars 526 forks source link

Second .get().val() returns None #355

Open almaz1213 opened 3 years ago

almaz1213 commented 3 years ago

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