Metadata-Version: 2.4
Name: duration-humanizer
Version: 0.2.1
Summary: Convert seconds into human readable format
Author: Chavi Maheshwari
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Duration Humanizer

A simple Python package that converts seconds into a human-readable duration.

## Installation

```bash
pip install duration-humanizer


Usage
from duration_humanizer import humanize

print(humanize(3661))

Output : 1 hour 1 minute 1 second   
