Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1004 Bytes

README.org

File metadata and controls

39 lines (25 loc) · 1004 Bytes

Nutripy

https://travis-ci.org/yafeunteun/nutripy.svg?branch=master https://coveralls.io/repos/yafeunteun/nutripy/badge.svg https://api.codeclimate.com/v1/badges/2ccd4965df3cd83f13ad/maintainability.svg

Installation

pip install nutripy

Usage

Compute daily needs

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)

Weight loss / mass gain management (work in progress)

The main feature of Nutripy is its ability to manage one’s weight loss and/or weight gain.

Work In Progress