Skip to content

Instantly share code, notes, and snippets.

@OtavioBraga
Created May 10, 2017 17:50
Show Gist options
  • Save OtavioBraga/7374b27f8414ee958ae81163ddb01608 to your computer and use it in GitHub Desktop.
Save OtavioBraga/7374b27f8414ee958ae81163ddb01608 to your computer and use it in GitHub Desktop.
Basic flask hello world
from flask import Flask
meu_web_app = Flask('meu_web_app')
@meu_web_app.route('/')
def pagina_inicial():
return "Hello World"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment