https://github.com/tim232/humanizetime
Change seconds to humanized time
https://github.com/tim232/humanizetime
Last synced: 3 months ago
JSON representation
Change seconds to humanized time
- Host: GitHub
- URL: https://github.com/tim232/humanizetime
- Owner: Tim232
- License: gpl-3.0
- Created: 2020-12-29T11:58:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-29T11:59:03.000Z (over 5 years ago)
- Last Synced: 2025-01-25T01:17:28.096Z (over 1 year ago)
- Language: Python
- Homepage: https://pypi.org/project/humanizeTime/
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# humanizeTime
Change seconds to humanized time
How to Install :
```shell
$ pip install humanizeTime
```
How to Use :
```python
from humanizeTime import human_time
time = human_time(123231)
print(time)
```
```shell
1 day, 10 hours, 13 minutes, and 51 seconds
```