Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Latest commit

 

History

History
57 lines (32 loc) · 1.32 KB

README.md

File metadata and controls

57 lines (32 loc) · 1.32 KB

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