Metadata-Version: 2.1
Name: weight-converter
Version: 0.0.3
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
[![PyPI version](https://badge.fury.io/py/weight-converter.svg)](https://badge.fury.io/py/weight-converter)
[![codecov](https://codecov.io/gh/adamriaz/weight-converter/branch/main/graph/badge.svg?token=hcHbzXWhUJ)](https://codecov.io/gh/adamriaz/weight-converter)
[![Documentation Status](https://readthedocs.org/projects/weight-converter/badge/?version=latest)](https://weight-converter.readthedocs.io/en/latest/?badge=latest)

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()
```

Documentation: https://weight-converter.readthedocs.io/en/latest/




