Skip to content

Instantly share code, notes, and snippets.

@callmephilip
Created September 16, 2013 12:54
Show Gist options
  • Select an option

  • Save callmephilip/6580321 to your computer and use it in GitHub Desktop.

Select an option

Save callmephilip/6580321 to your computer and use it in GitHub Desktop.
Chatzilla gists
from gevent import monkey
from flask import Flask
monkey.patch_all()
application = Flask(__name__)
application.debug = True
application.config['PORT'] = 5000
@application.route('/', methods=['GET'])
def landing():
return "Welcome to Chatzilla"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment