Skip to content

Instantly share code, notes, and snippets.

@frfs
Created November 15, 2018 09:59
Show Gist options
  • Save frfs/012e6c0020872e48dbe90d4893326942 to your computer and use it in GitHub Desktop.
Save frfs/012e6c0020872e48dbe90d4893326942 to your computer and use it in GitHub Desktop.
任意のステータスコード返すやつ
from flask import Flask, abort
app = Flask(__name__)
@app.route('/', subdomain='<int:code>')
def main(code):
abort(code)
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment