2018-11-01から1ヶ月間の記事一覧

PythonのClickのサブコマンドをsymlinkで表現する作例

PythonのClickで command [--debug] foo [--force] [--yes]なのを実装したとして、これと同じのを command-foo というsymbolic linkを作って command-foo [--debug] [--force] [--yes]でも実行できるようにしたい作例。 https://gist.github.com/hirose31/f4…

REST API フレームワーク Connexion のススメとその作例

Python の Connexion というフレームワークとそのサンプルアプリケーションを書いたのでその紹介です。 https://github.com/zalando/connexion https://github.com/hirose31/connexion-tiny-petstore Connexion は「API (spec) First」を謳うフレームワーク…