開発環境
- macOS High Sierra - Apple
- Emacs (Text Editor)
- Python 3.7 (プログラミング言語)
Head First Python 第2版 ―頭とからだで覚えるPythonの基本 (Paul Barry (著)、嶋田 健志 (監修)、木下 哲也 (翻訳)、オライリージャパン)の5章(Webアプリケーションの構築 - 現実に目を向ける)、自分で考えてみよう(p. 209)を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 from flask import Flask import vsearch app = Flask(__name__) @app.route('/') def hell() -> str: return 'Hello world from Flask!' @app.route('/search4') def do_search(): return str(vsearch.search4letters('life, the universe, and everything!')) app.run()
入出力結果(Terminal, Jupyter(IPython))
$ ./hello_flask.py.py * Serving Flask app "hello_flask.py" (lazy loading) * Environment: production WARNING: Do not use the development server in a production environment. Use a production WSGI server instead. * Debug mode: off * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) 127.0.0.1 - - [02/Oct/2018 10:06:36] "GET / HTTP/1.1" 200 - 127.0.0.1 - - [02/Oct/2018 10:06:44] "GET /index.html HTTP/1.1" 404 - 127.0.0.1 - - [02/Oct/2018 10:06:53] "GET /search4 HTTP/1.1" 200 - C-c C-c$
0 コメント:
コメントを投稿