Skip to content

djlint/RelativeToNow

Repository files navigation

Relative To Now

Convert date/time into a string relative to now.

Python Version Codecov Status Codacy Status Pypi Download Downloads

💾 Install

python -m pip install relative-to-now

# or

poetry add relative-to-now

✨ How to Use

Possible input types:

  • time.time()
  • datetime.date.today()
  • datetime.datetime.now()

Optional inputs:

  • no_errors (Defaults to False, set to True to return value when there is an error instead of raising)

Output:

Examples:

import datetime
from RelativeToNow import relative_to_now

print(relative_to_now(datetime.datetime.now() + datetime.timedelta(days=1)))
>>> 1 day from now

Precision for datetime.date is days.

import datetime
from RelativeToNow import relative_to_now

print(relative_to_now(datetime.date.today() - datetime.timedelta(days=2)))
>>> 2 days ago
import time
from RelativeToNow import relative_to_now

print(relative_to_now(time.time()))
>>> just now