Dual-Life / Time-Piece

Object Oriented time objects
Other
15 stars 33 forks source link

Seeking a new maintainer: https://www.nntp.perl.org/group/perl.perl5.porters/2021/01/msg258823.html

Time::Piece

This module supercedes Time::Object (and has a better name).

At this time the module is almost identical to Time::Object, with the exception of strptime support. People using Time::Object should migrate over to Time::Piece as they are able to do so. No further development will occur to Time::Object.

DESCRIPTION

Have you ever thought you time was thoroughly wasted by doing:

$ perldoc -f localtime

just to recall the position of wday or some other item in the returned list of values from localtime (or gmtime) ?

Well Time::Piece is the answer to your prayers.

Time::Piece does the right thing with the return value from localtime:

Beyond that, Time::Piece objects allow you to get any part of the date/time via method calls, plus they allow you to get at the string form of the week day and month. It has methods for julian days, and some simple date arithmetic options.

Time::Piece also gives you easy access to your C library's strftime and strptime functions, so you can parse and output locale sensitive dates to your heart's content :-)