Metadata-Version: 2.4
Name: hasstatkit
Version: 0.1.0
Summary: A simple Python toolkit for basic statistics and unit conversions
Author: Hussain Awais Sajjad
License: MIT
Project-URL: Homepage, https://github.com/yourusername/hasstatkit
Keywords: statistics,math,conversions,utility
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# hasstatkit

A simple Python toolkit for basic statistics and unit conversions.

## Installation

```bash
pip install hasstatkit
```

## Modules

### 1. statistics_tools
- `mean(numbers)` — calculates the average
- `median(numbers)` — calculates the middle value
- `variance(numbers)` — calculates the spread of data
- `std_dev(numbers)` — calculates the standard deviation

### 2. conversions
- `celsius_to_fahrenheit(c)` — converts Celsius to Fahrenheit
- `fahrenheit_to_celsius(f)` — converts Fahrenheit to Celsius
- `km_to_miles(km)` — converts kilometers to miles
- `miles_to_km(miles)` — converts miles to kilometers

## Usage

```python
import hasstatkit

print(hasstatkit.mean([2, 4, 6]))                  # 4.0
print(hasstatkit.median([1, 2, 3, 4]))              # 2.5
print(hasstatkit.celsius_to_fahrenheit(100))        # 212.0
print(hasstatkit.km_to_miles(10))                   # 6.21371
```

## License

MIT License
