merchant-frontend-examples

ZZZ: Inactive/Deprecated
Log | Files | Refs

commit 250b9cbf0060bbf02e380282c93788789f729c89
parent 13a339798b299f862004b3feb2b8de77a1a65ca4
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Tue, 21 Feb 2017 17:05:01 +0100

forcing pytaler installation

Diffstat:
MPython/lib/Makefile | 2+-
MPython/tutorial/tutorial.py | 4++++
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/Python/lib/Makefile b/Python/lib/Makefile @@ -1,5 +1,5 @@ install: - pip3 install . --install-option="--prefix=$(TALER_PREFIX)" + pip3 install . --install-option="--prefix=$(TALER_PREFIX)" --upgrade check: python3 pytaler/tests.py diff --git a/Python/tutorial/tutorial.py b/Python/tutorial/tutorial.py @@ -4,10 +4,14 @@ from urllib.parse import urljoin, urlencode from pytaler import amounts import base64 import os +import logging +import json app = flask.Flask(__name__) app.secret_key = base64.b64encode(os.urandom(64)).decode('utf-8') +logger = logging.getLogger(__name__) + CURRENCY = "PUDOS" BACKEND_URL = "http://backend.test.taler.net/"