Metadata-Version: 2.4
Name: studybuddy-tools
Version: 0.1.0
Summary: A beginner-friendly Python library with helpful utility functions for students — covering math, strings, and everyday calculations.
Author: Sehrish Nasir
Author-email: fsehrish287@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# studybuddy-tools

A beginner-friendly Python library with helpful utility functions for students — covering math, strings, and everyday calculations.

## Installation

```bash
pip install studybuddy-tools
```

## Usage

```python
from studybuddy import math_helper, string_helper

# Calculate your percentage
print(math_helper.percentage(85, 100))  # Output: 85.0

# Get a friendly greeting
print(string_helper.greet("Sehrish"))  # Output: Hello, Sehrish! Welcome.
```
