【Python】Bottleで404 Not Foundページをカスタマイズする

【Python】Bottleで404 Not Foundページをカスタマイズする方法です。

サンプルコードは以下の通りです。

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)))
view raw app.py hosted with ❤ by GitHub

コメントする

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

This site uses Akismet to reduce spam. Learn how your comment data is processed.