100%(1)1 out of 1 people found this document helpful
This preview shows page 1 out of 1 page.
from flask import Flask, render_template, requestapp=Flask(__name__)@app.route('/greet', methods=['POST'])def greet():inputName = request.form['myName']ip = request.remote_addr#write data to file or to DBinputName = inputName.upper()+" hi!Visiting from " + str(ip)return render_template("home.html",myName=inputName)
You've reached the end of your free preview.
Want to read the whole page?
Fall '08
STAFF
American record labels,Bruno,flask import Flask,#Write,@app