Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. url = 'https://chat-example-97c62.firebaseio.com/Movie1.json'
  2. postdata = {
  3. 'date': str(time.asctime( time.localtime(time.time()) )),
  4. 'temp': str("Hello from Kodi")
  5. }
  6. req = urllib2.Request(url)
  7. req.add_header('Content-Type','application/json')
  8. data = json.dumps(postdata)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement