Skip to main content

Human readable datetime deltas

Project description

Examples:

from datetime import datetime, timedelta

now = datetime.now()
an_hour_ago = now - timedelta(hours=1)
yesterday = now - timedelta(days=1)
tomorrow = now + timedelta(days=1)

import human

print human.date(now)                      # 'now'
print human.date(an_hour_ago)              # 'an hour ago'
print human.date(an_hour_ago, short=True)  # '1h ago'
print human.date(an_hour_ago, asdays=True) # 'today'
print human.date(yesterday, short=True)    # 'yest'
print human.date(tomorrow)                 # 'tomorrow'

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

human-datetimedelta-0.1.tar.gz (1.9 kB view hashes)

Uploaded Source

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