Skip to main content

Print a datetime's distance from now

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

relative_to_now-1.1.0.tar.gz (15.1 kB view hashes)

Uploaded Source

Built Distribution

relative_to_now-1.1.0-py3-none-any.whl (15.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page