예제 #1
0
파일: app.py 프로젝트: yjxiao/nyc-turnstile
def home_post():
    startdate = request.form["startdate"]
    enddate = request.form["enddate"]
    result = query_stats(startdate, enddate)
    return render_template("index.html", stats=result)
예제 #2
0
파일: app.py 프로젝트: yjxiao/nyc-turnstile
def home():
    result = query_stats("2013-08-01", "2013-08-02")
    return render_template("index.html", stats=result)