Skip to content

Instantly share code, notes, and snippets.

@bbrodriges
Created February 13, 2012 12:58
Show Gist options
  • Save bbrodriges/1816769 to your computer and use it in GitHub Desktop.
Save bbrodriges/1816769 to your computer and use it in GitHub Desktop.
HelloWorld with bottle+gevent
# -*- coding: UTF-8 -*-
#THIRD-PARTY MODULES
import bottle
@bottle.route('/')
def index():
return 'Hello, World!'
#BOTTLE STARTER
bottle.run(host='127.0.0.1', port=8080, server='gevent')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment