【Python】Bottleで404 Not Foundページをカスタマイズする方法です。
サンプルコードは以下の通りです。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bottle import route, run, template, error | |
import os | |
@error(404) | |
def error404(error): | |
return template("<h1>{{error_message}}</h1>", error_message="404 Not Found.") | |
run(host="0.0.0.0", port=int(os.environ.get("PORT", 5000))) |