Skip to main content

Get timestamp, formatted date, and perform date/time operations.

Project description

sometime

Get timestamp, formatted date, and perform date/time operations.

from sometime.sometime import Sometime

date = Sometime()
print(date.timestamp())

# access dictionary
moment = date.moment()

# to add/subtract, set parameter to any positive/negative integer
date.year(1) # month(), day(), hour(), minute(), second()
print(date.year())

# custom date increments / decrements
# date.add(years=0, months=0, days=0, hours=0, minutes=0, seconds=0)
date.add(years=5, months=1, days=7)
date.add(hours=1, minutes=30)
date.add(minutes=1, seconds=25)

# Name of Month e.g. November
print(date.name_of_month()) 

# Day of Week e.g. Monday
print(date.day_of_week()) 

# AM / PM
print(date.period())

# Custom date formats
print(date.("%Y-%m-%d %H:%M:$S"))

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

sometime-1.0.5.tar.gz (6.7 kB view hashes)

Uploaded Source

Built Distribution

sometime-1.0.5-py3-none-any.whl (4.1 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