Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #python -m pip install python-firebase
  2. # https://smus-94b9f.firebaseio.com/
  3.  
  4. from firebase import firebase
  5.  
  6. myConn = firebase.FirebaseApplication('https://smus-94b9f.firebaseio.com/', None)
  7.  
  8. data = {
  9. 'name' : "Wiktor",
  10. 'age' : 18
  11. }
  12.  
  13. result = myConn.post('/WiktorsData/myContacts/',data)
  14.  
  15. print(result)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement