file:https://travis-ci.org/yafeunteun/nutripy.svg?branch=master
pip install nutripy
import nutripy
from nutripy import Nutripy
nut = Nutripy()
age = 25
weight = 60
height = 180
gender = nutripy.nutripy.Gender.MALE
activity = nutripy.nutripy.Activity.SEDENTARY
goal = nutripy.nutripy.Goal.GAIN
daily_needs = nut.get_daily_needs(age, weight, height, gender, activity, goal)
The main feature of Nutripy is its ability to manage one's weight loss and/or weight gain.
Work In Progress