Skip to content

Instantly share code, notes, and snippets.

@necronet
Created February 19, 2013 01:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save necronet/4982283 to your computer and use it in GitHub Desktop.
Save necronet/4982283 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hola a la Web!"
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment