Introduction

Weight Converter is a python module for converting weight units.

Install

To install Weight Converter, run the following command:

pip install weight-converter

Usage

Import the module and unit class

from weight_converter.convert import Kilograms

kilograms = Kilograms(value=1)
lbs = kilograms.to_pounds()