Metadata-Version: 2.1
Name: sec2time
Version: 1.2.0
Author-Email: TechieG <35962141+gokulnath30@users.noreply.github.com>
License: MIT
Requires-Python: >=3.10
Requires-Dist: pytest>=7.4.3
Description-Content-Type: text/markdown

# Time Conversion Package

This Python package provides a function `convert_seconds` that converts a given number of seconds into hours, minutes, and seconds.

## Installation

To install this package, you can use pip:

```bash
pip install sec2time
```

## Usage
Here's how you can use the convert_seconds function:
```python
from sec2time import convert_seconds

time = convert_seconds(7500)
print(time)  

```
## Result 

 Outputs: "2 hours 5 minutes"