日期时间对象 — Python 文档

来自菜鸟教程
Python/docs/3.8/c-api/datetime
跳转至:导航、​搜索

日期时间对象

datetime 模块提供了各种日期和时间对象。 在使用任何这些函数之前,必须在你的源代码中包含头文件datetime.h(注意这不包含在Python.h中),并且必须调用宏PyDateTime_IMPORT ,通常作为模块初始化函数的一部分。 该宏将指向 C 结构的指针放入静态变量 PyDateTimeAPI 中,该变量由以下宏使用。

用于访问 UTC 单例的宏:

PyObject *PyDateTime_TimeZone_UTC

返回表示 UTC 的时区单例,与 datetime.timezone.utc 相同的对象。

3.7 版中的新功能。

类型检查宏:

int PyDate_Check(PyObject *ob)
如果 ob 的类型为 PyDateTime_DateTypePyDateTime_DateType 的子类型,则返回 true。 ob 不能是 NULL
int PyDate_CheckExact(PyObject *ob)
如果 ob 的类型为 PyDateTime_DateType,则返回 true。 ob 不能是 NULL
int PyDateTime_Check(PyObject *ob)
如果 ob 的类型为 PyDateTime_DateTimeTypePyDateTime_DateTimeType 的子类型,则返回 true。 ob 不能是 NULL
int PyDateTime_CheckExact(PyObject *ob)
如果 ob 的类型为 PyDateTime_DateTimeType,则返回 true。 ob 不能是 NULL
int PyTime_Check(PyObject *ob)
如果 ob 的类型为 PyDateTime_TimeTypePyDateTime_TimeType 的子类型,则返回 true。 ob 不能是 NULL
int PyTime_CheckExact(PyObject *ob)
如果 ob 的类型为 PyDateTime_TimeType,则返回 true。 ob 不能是 NULL
int PyDelta_Check(PyObject *ob)
如果 ob 的类型为 PyDateTime_DeltaTypePyDateTime_DeltaType 的子类型,则返回 true。 ob 不能是 NULL
int PyDelta_CheckExact(PyObject *ob)
如果 ob 的类型为 PyDateTime_DeltaType,则返回 true。 ob 不能是 NULL
int PyTZInfo_Check(PyObject *ob)
如果 ob 的类型为 PyDateTime_TZInfoTypePyDateTime_TZInfoType 的子类型,则返回 true。 ob 不能是 NULL
int PyTZInfo_CheckExact(PyObject *ob)
如果 ob 的类型为 PyDateTime_TZInfoType,则返回 true。 ob 不能是 NULL

创建对象的宏:

PyObject *PyDate_FromDate(int year, int month, int day)
返回具有指定年月日的 datetime.date 对象。
PyObject *PyDateTime_FromDateAndTime(int year, int month, int day, int hour, int minute, int second, int usecond)
返回具有指定年、月、日、时、分、秒和微秒的 datetime.datetime 对象。
PyObject *PyDateTime_FromDateAndTimeAndFold(int year, int month, int day, int hour, int minute, int second, int usecond, int fold)

返回具有指定年、月、日、时、分、秒、微秒和折叠的 datetime.datetime 对象。

3.6 版中的新功能。

PyObject *PyTime_FromTime(int hour, int minute, int second, int usecond)
返回具有指定小时、分钟、秒和微秒的 datetime.time 对象。
PyObject *PyTime_FromTimeAndFold(int hour, int minute, int second, int usecond, int fold)

返回具有指定小时、分钟、秒、微秒和折叠的 datetime.time 对象。

3.6 版中的新功能。

PyObject *PyDelta_FromDSU(int days, int seconds, int useconds)
返回一个 datetime.timedelta 对象,表示给定的天数、秒数和微秒数。 执行规范化以便结果的微秒数和秒数位于为 datetime.timedelta 对象记录的范围内。
PyObject *PyTimeZone_FromOffset(PyDateTime_DeltaType *offset)

返回一个 datetime.timezone 对象,其具有由 offset 参数表示的未命名固定偏移量。

3.7 版中的新功能。

PyObject *PyTimeZone_FromOffsetAndName(PyDateTime_DeltaType *offset, PyUnicode *name)

返回一个 datetime.timezone 对象,其固定偏移量由 offset 参数和 tzname name 表示。

3.7 版中的新功能。

从日期对象中提取字段的宏。 参数必须是 PyDateTime_Date 的实例,包括子类(例如 PyDateTime_DateTime)。 参数不能是NULL,并且不检查类型:

int PyDateTime_GET_YEAR(PyDateTime_Date *o)
以正整数形式返回年份。
int PyDateTime_GET_MONTH(PyDateTime_Date *o)
以从 1 到 12 的整数形式返回月份。
int PyDateTime_GET_DAY(PyDateTime_Date *o)
返回日期,作为从 1 到 31 的整数。

从日期时间对象中提取字段的宏。 参数必须是 PyDateTime_DateTime 的实例,包括子类。 参数不能是NULL,并且不检查类型:

int PyDateTime_DATE_GET_HOUR(PyDateTime_DateTime *o)
以从 0 到 23 的整数形式返回小时。
int PyDateTime_DATE_GET_MINUTE(PyDateTime_DateTime *o)
以 0 到 59 的整数形式返回分钟。
int PyDateTime_DATE_GET_SECOND(PyDateTime_DateTime *o)
返回第二个,作为从 0 到 59 的整数。
int PyDateTime_DATE_GET_MICROSECOND(PyDateTime_DateTime *o)
以从 0 到 999999 的整数形式返回微秒。

从时间对象中提取字段的宏。 参数必须是 PyDateTime_Time 的实例,包括子类。 参数不能是NULL,并且不检查类型:

int PyDateTime_TIME_GET_HOUR(PyDateTime_Time *o)
以从 0 到 23 的整数形式返回小时。
int PyDateTime_TIME_GET_MINUTE(PyDateTime_Time *o)
以 0 到 59 的整数形式返回分钟。
int PyDateTime_TIME_GET_SECOND(PyDateTime_Time *o)
返回第二个,作为从 0 到 59 的整数。
int PyDateTime_TIME_GET_MICROSECOND(PyDateTime_Time *o)
以从 0 到 999999 的整数形式返回微秒。

从时间增量对象中提取字段的宏。 参数必须是 PyDateTime_Delta 的实例,包括子类。 参数不能是NULL,并且不检查类型:

int PyDateTime_DELTA_GET_DAYS(PyDateTime_Delta *o)

以整数形式返回天数,从 -999999999 到 999999999。

3.3 版中的新功能。

int PyDateTime_DELTA_GET_SECONDS(PyDateTime_Delta *o)

以从 0 到 86399 的整数形式返回秒数。

3.3 版中的新功能。

int PyDateTime_DELTA_GET_MICROSECONDS(PyDateTime_Delta *o)

以从 0 到 999999 的整数形式返回微秒数。

3.3 版中的新功能。

用于方便模块实现 DB API 的宏:

PyObject *PyDateTime_FromTimestamp(PyObject *args)
给定一个适合传递给 datetime.datetime.fromtimestamp() 的参数元组,创建并返回一个新的 datetime.datetime 对象。
PyObject *PyDate_FromTimestamp(PyObject *args)
给定一个适合传递给 datetime.date.fromtimestamp() 的参数元组,创建并返回一个新的 datetime.date 对象。