Flask App Example

[Solved] Flask App Example | Python Frameworks Flask - Code Explorer | www.yomemimo.com
Question : python flask sample application

Answered by : sachin-verma

from flask import *
app = Flask(__name__)
@app.route("/")
def index(): return "<h1>Hello World</h1>"
if __name__ == "__main__": app.run(host="0.0.0.0", port=8080, debug=False)

Source : | Last Update : Thu, 25 Nov 21

Question : simple flask app

Answered by : nk

# Extremely simple flask application, will display 'Hello World!' on the screen when you run it
# Access it by running it, then going to whatever port its running on (It'll say which port it's running on).
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): return 'Hello, World!'
if __name__ == '__main__': app.run()

Source : https://flask.palletsprojects.com/en/1.1.x/quickstart/ | Last Update : Fri, 07 Aug 20

Question : python basic flask app

Answered by : tame-tapir-xtbndsxp7hiy

# Imports necessary libraries
from flask import Flask
# Define the app
app = Flask(__name__)
# Get a welcoming message once you start the server.
@app.route('/')
def home(): return 'Home sweet home!'
# If the file is run directly,start the app.
if __name__ == '__main__': app.run(Debug=True)
# To execute, run the file. Then go to 127.0.0.1:5000 in your browser and look at a welcoming message.

Source : | Last Update : Wed, 03 Mar 21

Question : flask app example

Answered by : aaditya-sangroula

import flask
# A simple Flask App which takes
# a user's name as input and responds
# with "Hello {name}!"
app = flask.Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def index(): message = '' if flask.request.method == 'POST': message = 'Hello ' + flask.request.form['name-input'] + '!' return flask.render_template('index.html', message=message)
if __name__ == '__main__': app.run()

Source : | Last Update : Tue, 10 May 22

Question : basic flask app

Answered by : splendid-swiftlet-n25i5r8peleb

from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world(): return "<p>Hello, World!</p>"

Source : https://flask.palletsprojects.com/en/2.0.x/quickstart/ | Last Update : Sun, 21 Nov 21

Question : basic flask app python

Answered by : jordan-dixon

#Import Flask, if not then install and import.
import os
try: from flask import *
except: os.system("pip3 install flask") from flask import *
app = Flask(__name__)
@app.route("/")
def index(): return "<h1>Hello World</h1>"
if __name__ == "__main__": app.run(host="0.0.0.0", port=8080, debug=False)

Source : | Last Update : Mon, 02 Nov 20

Question : Create a Flask App

Answered by : masud-hanif

# save this as app.py
from flask import Flask, escape, request
app = Flask(__name__)
@app.route('/')
def hello(): name = request.args.get("name", "World") return f'Hello, {escape(name)}!' # twitter : @MasudSha_ # @MasudShah

Source : https://palletsprojects.com/p/flask/ | Last Update : Fri, 25 Mar 22

Answers related to flask app example

Code Explorer Popular Question For Python Frameworks Flask