google.appengine.ext.db.TimeProperty.data_type

time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object

Inherits From: expected_type

All arguments are optional. tzinfo may be None, or an instance of a tzinfo subclass. The remaining arguments may be ints.

fold

hour

microsecond

minute

second

tzinfo

Methods

dst

Return self.tzinfo.dst(self).

fromisoformat

string -> time from time.isoformat() output

isoformat

Return string in ISO 8601 format, [HH[:MM[:SS[.mmm[uuu]]]]][+HH:MM].

The optional argument timespec specifies the number of additional terms of the time to include. Valid options are 'auto', 'hours', 'minutes', 'seconds', 'milliseconds' and 'microseconds'.

replace

Return time with new specified fields.

strftime

format -> strftime() style string.

tzname

Return self.tzinfo.tzname(self).

utcoffset

Return self.tzinfo.utcoffset(self).

__eq__

Return self==value.

__ge__

Return self>=value.

__gt__

Return self>value.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

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