インストール
pipでインストールできる。
pip install bottle
サンプルコード api.py
以下の様な短いコードでWeb APIが動作する。
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 | |
# アノテーションでURLを記述 | |
@route('/deepapi/json/:name') | |
def hello(name): | |
return '<h1>Deep %s!</h1>' % name | |
# オプションをつけるとデバッグ実行 | |
run(host='masai-no-MacBook-Pro.local', port=8080, debug=True, reloader=True) | |
#run(host='localhost', port=8080) |
起動
python api.pyめちゃくちゃ楽できる・・・。今まで使わなかったことを後悔するくらいだ。
0 件のコメント:
コメントを投稿