Metadata-Version: 2.1
Name: weight-converter
Version: 0.0.2
Summary: Module for converting weight units. 
Home-page: https://github.com/adamriaz/weight-converter
Author: Adam Riaz
Author-email: riaz_adam@hotmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Weight Converter
[![codecov](https://codecov.io/gh/adamriaz/weight-converter/branch/main/graph/badge.svg?token=hcHbzXWhUJ)](https://codecov.io/gh/adamriaz/weight-converter)

A python module for converting weight units.

## Install
To install Weight Converter, run the following command:
```bash
pip install weight-converter
```

## Usage
Import the module and unit class
```python
from weight_converter.convert import Kilograms

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




