google.appengine.ext.db.DateProperty.data_type

date(year, month, day) --> date object

Inherits From: expected_type

day

month

year

Methods

ctime

Return ctime() style string.

fromisocalendar

int, int, int -> Construct a date from the ISO year, week number and weekday.

This is the inverse of the date.isocalendar() function

fromisoformat

str -> Construct a date from the output of date.isoformat()

fromordinal

int -> date corresponding to a proleptic Gregorian ordinal.

fromtimestamp

Create a date from a POSIX timestamp.

The timestamp is a number, e.g. created via time.time(), that is interpreted as local time.

isocalendar

Return a named tuple containing ISO year, week number, and weekday.

isoformat

Return string in ISO 8601 format, YYYY-MM-DD.

isoweekday

Return the day of the week represented by the date. Monday == 1 ... Sunday == 7

replace

Return date with new specified fields.

strftime

format -> strftime() style string.

timetuple

Return time tuple, compatible with time.localtime().

today

Current date or datetime: same as self.class.fromtimestamp(time.time()).

toordinal

Return proleptic Gregorian ordinal. January 1 of year 1 is day 1.

weekday

Return the day of the week represented by the date. Monday == 0 ... Sunday == 6

__add__

Return self+value.

__eq__

Return self==value.

__ge__

Return self>=value.

__gt__

Return self>value.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

__radd__

Return value+self.

__rsub__

Return value-self.

__sub__

Return self-value.

max Instance of google.appengine.ext.db.DateProperty.data_type
min Instance of google.appengine.ext.db.DateProperty.data_type
resolution Instance of datetime.timedelta