コード例 #1
0
def yourgif():
    query = request.form["gifchoice"]
    key = app.config['Giphy_Key']

    # print(query)
    image = getImageUrlFrom(query,key)
    return render_template("yourgif.html",time = datetime.now(),image =image)
コード例 #2
0
ファイル: app.py プロジェクト: bernardw11/gif-flask
def yourgif():
    if request.method == "POST":
        choice = request.form['gifchoice']
        image = getImageUrlFrom(choice, GIPHY_KEY)
        return render_template("yourgif.html",
                               time=datetime.now(),
                               image=image)
    else:
        return "bruh error."
コード例 #3
0
ファイル: app.py プロジェクト: elissadlevy/giphyAPIapp
def yourgif():
    query = request.form["gifchoice"]
    # print(query)
    image = getImageUrlFrom(query)
    return render_template("yourgif.html", image=image)
コード例 #4
0
def yourgif():
    query = request.form['gifchoice']
    gif = getImageUrlFrom(request.form['gifchoice'])
    return render_template('yourgif.html', gif=gif, query=query)
コード例 #5
0
ファイル: app.py プロジェクト: dwayneglevene/Giphygenerator
def yourgif():
    query = request.form['gifchoice']
    key = app.config['giphy_key']
    image = getImageUrlFrom(query, key)
    return render_template("yourgif.html", time=datetime.now(), image=image)