def post(self): createMap() return render_template('map.html')
def get(self): import os.path if not os.path.isfile("static/img/map.png"): createMap() return render_template('map.html')