Metadata-Version: 2.4
Name: buddies-tools
Version: 0.1.0
Summary: A lightweight utility library with numeric and text-processing helpers.
Author: Muneeb
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: license
Dynamic: license-file

# buddies-tools

A lightweight Python utility library with handy numeric and text-processing helper functions.

## Installation

```bash
pip install buddies-tools
```

## Modules

### `numeric_tools`
- `mean(numbers)` — arithmetic mean of a list of numbers
- `median(numbers)` — median value of a list of numbers
- `is_prime(n)` — checks whether a number is prime
- `factorial(n)` — computes n!

### `text_tools`
- `reverse_string(text)` — reverses a string
- `is_palindrome(text)` — checks whether a string is a palindrome
- `count_vowels(text)` — counts vowels in a string
- `to_title_case(text)` — converts a string to title case

## Quick Example

```python
from buddies_tools import mean, is_prime, reverse_string, is_palindrome

print(mean([1, 2, 3, 4]))                              # 2.5
print(is_prime(17))                                      # True
print(reverse_string("hello"))                           # olleh
print(is_palindrome("Was it a car or a cat I saw"))       # True
```

## License

MIT
