Skip to content

Instantly share code, notes, and snippets.

View leo-mon's full-sized avatar

leo-mon leo-mon

  • Tokyo, Japan
View GitHub Profile
@leo-mon
leo-mon / hello.py
Last active February 9, 2017 21:50
from flask import Flask, request, make_response, redirect, abort
app = Flask(__name__)
# 基本
@app.route('/')
def index():
return '<h1>こんにちは</h1>'
# URLからパラメータ受け取り
@app.route('/user/<name>')
import cgi
form = cgi.FieldStorage() # フォームからの値の取得
name = form.getvalue('name', '')
message = 'ようこそ、' + name + 'さん!'
print('Content-type: text/html; charset=UTF-8') # ヘッダ開始
print() # ヘッダ終了、これを省くとヘッダと認識してもらえない。