Metadata-Version: 2.1
Name: impyrialafouda
Version: 0.1.0
Summary: A package for converting impyrial lengths and weights.
Home-page: UNKNOWN
Author: Josue Afouda
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

## impyrialafouda

A package for converting between imperial unit lengths and weights.

This package was created for the [DataCamp](https://www.datacamp.com) course "Developing Python Packages".

### Features

- Convert lengths between miles, yards, feet and inches.
- Convert weights between hundredweight, stone, pounds and ounces.

### Usage

```python
import impyrialafouda

# Convert 500 miles to feet
impyrialafouda.length.convert_unit(500, from_unit='yd', to_unit='ft')  # returns 1500.0

# Convert 100 ounces to pounds
impyrialafouda.weight.convert_unit(100, from_unit='oz', to_unit='lb')  # returns 6.25
```


