The DateTime object provides an interface for working with dates and times in various formats. DateTime also provides methods for calendar operations, date and time arithmetic and formatting.
DateTime objects represent instants in time and provide interfaces for controlling its representation without affecting the absolute value of the object.
DateTime objects may be created from a wide variety of string or numeric data, or may be computed from other DateTime objects. DateTimes support the ability to convert their representations to many major timezones, as well as the ability to create a DateTime object in the context of a given timezone.
DateTime objects provide partial numerical behavior:
DateTime objects may be converted to integer, long, or float numbers of days since January 1, 1901, using the standard int, long, and float functions (Compatibility Note: int, long and float return the number of days since 1901 in GMT rather than local machine timezone). DateTime objects also provide access to their value in a float format usable with the python time module, provided that the value of the object falls in the range of the epoch-based time module.
A DateTime object should be considered immutable; all conversion and numeric operations return a new DateTime object rather than modify the current object.
A DateTime object always maintains its value as an absolute UTC time, and is represented in the context of some timezone based on the arguments used to create the object. A DateTime object's methods return values based on the timezone context.
Note that in all cases the local machine timezone is used for representation if no timezone is specified.
DateTimes may be created with from zero to seven arguments.
As a general rule, any date-time representation that is
recognized and unambiguous to a resident of North America is
acceptable.(The reason for this qualification is that
in North America, a date like: 2/1/1994 is interpreted
as February 1, 1994, while in some parts of the world,
it is interpreted as January 2, 1994.) A date/time
string consists of two components, a date component and
an optional time component, separated by one or more
spaces. If the time component is omitted, 12:00am is
assumed. Any recognized timezone name specified as the
final element of the date/time string will be used for
computing the date/time value. (If you create a DateTime
with the string Mar 9, 1997 1:45pm US/Pacific
, the
value will essentially be the same as if you had captured
time.time() at the specified date and time on a machine in
that timezone):
e=DateTime("US/Eastern") # returns current date/time, represented in US/Eastern. x=DateTime("1997/3/9 1:45pm") # returns specified time, represented in local machine zone. y=DateTime("Mar 9, 1997 13:45:00") # y is equal to x
The date component consists of year, month, and day values. The year value must be a one-, two-, or four-digit integer. If a one- or two-digit year is used, the year is assumed to be in the twentieth century. The month may be an integer, from 1 to 12, a month name, or a month abbreviation, where a period may optionally follow the abbreviation. The day must be an integer from 1 to the number of days in the month. The year, month, and day values may be separated by periods, hyphens, forward slashes, or spaces. Extra spaces are permitted around the delimiters. Year, month, and day values may be given in any order as long as it is possible to distinguish the components. If all three components are numbers that are less than 13, then a month-day-year ordering is assumed.
The time component consists of hour, minute, and second values separated by colons. The hour value must be an integer between 0 and 23 inclusively. The minute value must be an integer between 0 and 59 inclusively. The second value may be an integer value between 0 and 59.999 inclusively. The second value or both the minute and second values may be omitted. The time may be followed by am or pm in upper or lower case, in which case a 12-hour clock is assumed.
A DateTime object is returned that represents the gmt value of the time.time() float represented in the local machine's timezone.
import time t=time.time() now_east=DateTime(t,'US/Eastern') # Time t represented as US/Eastern now_west=DateTime(t,'US/Pacific') # Time t represented as US/Pacific # now_east == now_west # only their representations are different
New in Zope 2.7: A new keyword parameter "datefmt" can be passed to the constructor. If set to "international", the constructor is forced to treat ambigious dates as "days before month before year". This useful if you need to parse non-US dates in a reliable way
If a string argument passed to the DateTime constructor cannot be parsed, it will raise DateTime.SyntaxError. Invalid date, time, or timezone components will raise a DateTime.DateTimeError.
The module function Timezones() will return a list of the timezones recognized by the DateTime module. Recognition of timezone names is case-insensitive.
Return a string representing the object's value in the format: Mar 1, 1997 1:45 pm US/Eastern
Return the abbreviated name of the day of the week
Return true if this object represents a date/time that falls within the current minute, in the context of this object's timezone representation
Return the millisecond since the epoch in GMT.
Return the abbreviated month name.
Return the object in the format used in the HTML4.0 specification, one of the standard forms in ISO8601.
Dates are output as: YYYY-MM-DDTHH:MM:SSZ T, Z are literal characters. The time is in UTC.
Return the month of the object as an integer
Return the second
Return the object in ISO standard format
Dates are output as: YYYY-MM-DD HH:MM:SS
Return the calendar year of the object
Return the timezone in which the object is represented.
Return the integer day of the week, where Sunday is 1
Return a new DateTime object that represents the latest possible time (in whole seconds) that still falls within the current object's day, in the object's timezone context
Return the time string for an object not showing seconds.
Compatibility: see Day
Return true if this object represents a date/time that falls within the current month, in the context of this object's timezone representation
Return the time string for the object.
Return the 24-hour clock representation of the hour
Compare this DateTime object to another DateTime object OR a floating point number such as that which is returned by the python time module. Returns true if the object represents a date/time not equal to the specified DateTime or time module style time. Revised to give more correct results through comparison of long integer milliseconds.
Return the abbreviated (with period) month name.
Return the abbreviated (with period) name of the day of the week
Return the date in RFC 822 format
Compare this DateTime object to another DateTime object OR a floating point number such as that which is returned by the python time module. Returns true if the object represents a date/time equal to the specified DateTime or time module style time. Revised to give more correct results through comparison of long integer milliseconds.
Compare this DateTime object to another DateTime object OR a floating point number such as that which is returned by the python time module. Returns true if the object represents a date/time less than the specified DateTime or time module style time. Revised to give more correct results through comparison of long integer milliseconds.
Return the time string for an object not showing seconds.
Return true if this object represents a date/time that falls within the current year, in the context of this object's timezone representation
Return a string representing the object's value in the format: Mar 1, 1997 1:45 pm
Return a tuple containing the calendar year, month, day, hour, minute second and timezone of the object
Compatibility: see aMonth
Return a DateTime with the value as the current object, represented in the indicated timezone.
Return the date/time as a floating-point number in UTC, in the format used by the python time module. Note that it is possible to create date/time values with DateTime that have no meaningful value to the time module.
Return a string representing the object's value in the format: March 1, 1997 1:45 pm US/Eastern
Return true if this object represents a date/time earlier than the time of the call
Return a string representing the object's value in the format: March 1, 1997 1:45 pm
Return the time string for the object.
Return true if the current year (in the context of the object's timezone) is a leap year
Return day as a 2 digit string
Return true if this object represents a date/time that falls within the current day, in the context of this object's timezone representation
Return calendar year as a 2 digit string
Return the date string for the object.
Compare this DateTime object to another DateTime object OR a floating point number such as that which is returned by the python time module. Returns true if the object represents a date/time greater than the specified DateTime or time module style time. Revised to give more correct results through comparison of long integer milliseconds.
Return true if this object represents a date/time later than the time of the call
Return the time string for an object to the nearest second.
Return a new DateTime object that represents the earliest possible time (in whole seconds) that still falls within the current object's day, in the object's timezone context
Return the integer day
Return the minute
Compatibility: see pDay
Return the 24-hour clock representation of the hour
Return the appropriate time modifier (am or pm)
Return month as a 2 digit string
Return a string representing the object's value in the format: Mar. 1, 1997 1:45 pm
Return the time string for an object to the nearest second.
Return the full name of the day of the week
Return the full month name
Return true if this object represents a date/time that falls within the current hour, in the context of this object's timezone representation
Compare this DateTime object to another DateTime object OR a floating point number such as that which is returned by the python time module. Returns true if the object represents a date/time less than or equal to the specified DateTime or time module style time. Revised to give more correct results through comparison of long integer milliseconds.
Return the day of the year, in context of the timezone representation of the object
Compare this DateTime object to another DateTime object OR a floating point number such as that which is returned by the python time module. Returns true if the object represents a date/time greater than or equal to the specified DateTime or time module style time. Revised to give more correct results through comparison of long integer milliseconds.
Compatibility: see pMonth
Return the 12-hour clock representation of the hour
Return a string representing the object's value in the format: Mar. 1, 1997 1:45 pm US/Eastern
Return the integer day of the week, where Sunday is 0
Return date time string formatted according to format
See Python's time.strftime function.