Represent and transform expressions of time eg. '5 minutes a day in a year in days' = 1.27 days.
Project description
Minuteman
Represent and transform expressions of time. For example:
- 5 minutes per day in a year in days = 1.27 days.
- 1 hour per day in a decade in weeks = 21,72 weeks
- 10 months a year in 4 decades in years = 33.33 years
Install
pip install minuteman
Usage
Basic usage: from humanreadable expression to a number
from minuteman.parser import parse
# Case 1: calculation of daily habbit adding up.
expression = "5 minutes a day in 1 year in days"
result = parse(expression)
print(result) # 1.2673611111111112 days
# Same result with rounding to given decimals.
result = parse(expression, 2)
print(result) # 1.27 days
# Case 2: how many actual years one spends working in 40 year career.
expression = "10 months a year in 4 decades in years"
result = parse(expression, 0) # indicating no decimals.
print(result) # 33 years
More fine tune usage: ignoring humanreadable strings and using straight number input
from minuteman.core import transform, TimeExpressionRequest
from minuteman.units import TimeExpression, UnitOfTime
# Build a time expression request from parts
# Case: 8 hours a day in a year in months
request = TimeExpressionRequst(
original=TimeExpression(
amount=8,
unit=UnitOfTime.HOURS,
),
in_time=TimeExpression(amount=1, unit=UnitOfTime.DAYS),
comparison=TimeExpression(amount=1, unit=UnitOfTime.YEARS),
)
resolution = UnitOfTime.MONTHS
result = transform(request, resolution)
# Result is a TimeExpression instance with amount & unit.
print(result) # TimeExpression(amount=4.055555555555555, unit=UnitOfTime.Months)
Supported units of time:
- Seconds
- Minutes
- Hours
- Days
- Weeks
- Months
- Years
- Decades
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file minuteman-0.1.0.tar.gz.
File metadata
- Download URL: minuteman-0.1.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dab79c7eb32e79a9ab2996657027d0cea642c3e4b0d55686f85c5877b5b8581f
|
|
| MD5 |
137cdc9227a44838d9d9f249b45d7db0
|
|
| BLAKE2b-256 |
fc78c86c6c4965bde177cb7ef2610582d302c5fd7308bd8c34c33c0070b9ce3b
|
File details
Details for the file minuteman-0.1.0-py3-none-any.whl.
File metadata
- Download URL: minuteman-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3505878a8dff9f62bdc3247e4112f362f0251b964ea411d3646ce182000d078d
|
|
| MD5 |
50c82d3b6516a203f7033252b16294fb
|
|
| BLAKE2b-256 |
8367fca425b3c4280d87342bd85bc550dd6dd828106b56d0864ec10156fd12d7
|