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
`get` gets the value of a Firebase at some URL, and `put`sets the value of a Firebase at URLto some data.
17
+
`get` gets the value of a Firebase at some URL, `put`writes or replaces data at the path defined by URL and `push` appends data to a list at the path defined by URL. A new ID is also generated every time you `push`to a Firebase URL.
18
18
19
19
```python
20
20
>>>import firebase
@@ -36,6 +36,15 @@ tell me everything
36
36
37
37
>>>print firebase.get(URL+'/color')
38
38
red
39
+
40
+
>>>#Whereas using put replaces existing data, push simply appends to a list
0 commit comments