Example #1
0
def dumploopproduct():
    data = product_call()
    app.logger.debug(data)
    return render_template("loopproduct.html", products=data)
Example #2
0
def jsonproduct():
    data = product_call()
    print(data)
    return jsonify(data), 200
Example #3
0
def dumpproduct():
    return render_template("dump.html", customer=product_call())