Skip to main content

Print a datetimes distance from now

Project description

Relative To Now

Convert date/time into a string relative to now.

Install

python -m pip install RelativeToNow

# or

poetry add RelativeToNow

How to Use

Possible input types:

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

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-0.0.1.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

relative_to_now-0.0.1-py3-none-any.whl (14.8 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