なんやかんや、使い捨てのBottle鯖をたてるケースが多いので Windowsでも動く 実際のところ python from bottle import route, run, template, static_file, redirect from bottle import TEMPLATE_PATH from time import strftime from os import path as op TEMPLATE_PATH.append("./template/") @route('/') def index(): return template('index.html') # 内…