A utility package for human-readable time conversion.
Project description
# زمان خوانا
این یک تابع پایتون است که عددی غیر منفی (ثانیه) را به عنوان ورودی میگیرد و زمان را با
فرمت خوانا (ساعت:دقیقه:ثانیه) برمیگرداند.
## چگونه استفاده کنیم
1. مخزن را در دستگاه محلی خود کلون کنید.
2. تابع `make_readable1` یا`make_readable2` را از ماژول `human_readable_time` وارد کنید.
3. تابع `make_readable1` یا`make_readable2` را فراخوانی کنید و تعداد ثانیهها را به عنوان آرگومان ارسال کنید.
مثال:
```python
from human_readable_time import make_readable1 #OR make_readable2
seconds = 3661
result = make_readable1(seconds)
print(result) # خروجی: 01:01:01
```
## جزئیات تابع
تابع `make_readable1` یا `make_readable2` ساعت، دقیقه و ثانیه را از تعداد داده شده ثانیهها محاسبه کرده
و آنها را با رشتهی خوانا فرمت میکند. این تابع از تابع `divmod()` برای محاسبه کارآمد و f-string برای
فرمتبندی خروجی با صفر اولیه استفاده میکند.
# Human Readable Time
This is a Python function that takes a non-negative integer representing the number of seconds and
returns the time in a human-readable format (HH:MM:SS).
## How to Use
1. Clone the repository to your local machine.
2. Import the `make_readable1` OR `make_readable2` function from the `human_readable_time` module.
3. Call the `make_readable1` OR `make_readable2` function and pass the number of seconds as an argument.
Example:
```python
from human_readable_time import make_readable1 #OR make_readable2
seconds = 3661
result = make_readable1(seconds)
print(result) # Output: 01:01:01
```
## Function Details
The `make_readable1` OR `make_readable2` functions calculates the hours, minutes, and seconds from
the given number of seconds and formats them in a human-readable string. It uses the `divmod()`
function for efficient calculation and f-string for formatting the output with leading zeros.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for human_readable_time-0.1.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6d67834b1424d29c21be477219112617a90ae7a6a825c70d2423145f7046223 |
|
MD5 | 1d7366f528d12158905271d448c0551a |
|
BLAKE2b-256 | 2a67fabb715c4731300d76eccc0dc505d267553371c9e10eff705796036b8d96 |