datetime¶
- getml.data.time.datetime(year, month, day, hour=0, minute=0, second=0, microsecond=0)[source]¶
Returns the number of seconds since UNIX time (January 1, 1970, 00:00:00).
- Args:
- year (int):
Year component of the date.
- month (int):
Month component of the date.
- day (int):
Day component of the date.
- hour (int, optional):
Hour component of the date.
- minute (int, optional):
Minute component of the date.
- second (int, optional):
Second component of the date.
- microsecond (int, optional):
Microsecond component of the date.