Skip to content

Instantly share code, notes, and snippets.

@mengzhuo
Created July 23, 2014 06:48
Show Gist options
  • Save mengzhuo/89ae5dee035a1985a738 to your computer and use it in GitHub Desktop.
Save mengzhuo/89ae5dee035a1985a738 to your computer and use it in GitHub Desktop.
SImple API echo
from bottle import route, run
@route('/echo')
def echo():
return {'status':'ok'}
run(host='0.0.0.0', port=8998, reloader=False,
reloader=False, quiet=True, server='gevent')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment