Metadata-Version: 1.1
Name: BodyFatCalculator
Version: 0.1
Summary: First Custom Lib on pip
Home-page: https://github.com/JuberGandharv/BodyFat_Lib
Author: Juber Gandharv
Author-email: juber269@gmail.com
License: MIT
Download-URL: https://github.com/JuberGandharv/Custom_lib_body_fat/archive/refs/tags/V0.1.tar.gz
Description: # Calculate body fat percentage and return the same
            :age: age of user ot patient
            :gender: Male or Female
            :BMI: Body mass index
            :return: percentage of body fat
        
        # equation information
        
            Body fat percentage (BFP) formula for adult males:
            BFP = 1.20 × BMI + 0.23 × Age - 16.2
        
            Body fat percentage (BFP) formula for adult females:
            BFP = 1.20 × BMI + 0.23 × Age - 5.4
        
            Body fat percentage (BFP) formula for boys:
            BFP = 1.51 × BMI - 0.70 × Age - 2.2
        
            Body fat percentage (BFP) formula for girls:
            BFP = 1.51 × BMI - 0.70 × Age + 1.4
            
        # Example code
           
            from BodyfatCalculator.bodyfat_calculator import body_fat
            
            
            percentage = (age=27,gender="Male",BMI=22.22)
            
            
            print(percentage)
            
            
            
            
            
            output: 16.673999999999996
        
        
Keywords: BodyFat, Fat percentage, bodyfat calculator
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
