from bottle import route, run,template @route('/') def root(): return template('map_template', item="prova bind") @route('/') def myName(item): return template('map_template', item=item) run(host='localhost', port=9093)