Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import bottle
  2. import json
  3.  
  4.  
  5. @bottle.route('/', methods=['GET'])
  6. def index_html():
  7.   result = {'this': 'is', 'the': 'result'}
  8.   json = json.dumps(result)
  9.   return '<!DOCTYPE html><script>var s = JSON.parse(' + json + '); alert(s["the"]);</script>';
  10.  
  11. bottle.run(host='0.0.0.0', port=8080)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement