merchant-frontend-examples

ZZZ: Inactive/Deprecated
Log | Files | Refs

commit 197504825e3b6da9bec822247a4815eace1bc377
parent 924a48725eb59e8a8331bf4efaee5b5c38efc48c
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 20 Feb 2017 19:33:04 +0100

Python tutorial stub

Diffstat:
APython/tutorial.py | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/Python/tutorial.py b/Python/tutorial.py @@ -0,0 +1,6 @@ +from flask import Flask +app = Flask(__name__) + +@app.route('/') +def hello_world(): + return 'Hello, World!'