nutripy

A Python module for computing calorie requirements for individuals based on their needs and objectives


License
MIT
Install
pip install nutripy==0.7.0

Documentation

Table of Contents

  1. Nutripy
    1. Installation
    2. Usage
      1. Compute daily needs
      2. Weight loss / mass gain management (work in progress)

Nutripy

file:https://travis-ci.org/yafeunteun/nutripy.svg?branch=master img img

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