Skip to content

BMI を計算するシンプルなコマンドラインアプリケーションです

Notifications You must be signed in to change notification settings

nakamina/bmi-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BMI 計算くん🐶

身長(cm)と体重(kg)からBMIを計算するコマンドラインアプリケーション

環境構築

  • pyenvとpyenv-virtualenvを使用します
cd /path/to/bmi-app
pyenv virtualenv 3.9.9 bmi-app
pyenv local bmi-app

pip install -U pip setuptools wheel poetry
  • poetryを使用して依存ライブラリをインストールします
poetry install

動かし方

🐱❯ bmi-app --help
Usage: bmi-app [OPTIONS]

Options:
  --height INTEGER  身長(cm)  [required]
  --weight INTEGER  体重(kg)  [required]
  --help            Show this message and exit.

身長(cm)と体重(kg)を入力する

🐱❯ bmi-app --height 200 --weight 100
あなたのBMI値は25.0です
あなたの適正体重は88.0kgです

About

BMI を計算するシンプルなコマンドラインアプリケーションです

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages