xtime.py 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. # update: 2021-10-21
  2. """
  3. %a 星期的简写。如 星期三为Web
  4. %A 星期的全写。如 星期三为Wednesday
  5. %b 月份的简写。如4月份为Apr
  6. %B月份的全写。如4月份为April
  7. %c: 日期时间的字符串表示。(如: 04/07/10 10:43:39)
  8. %d: 日在这个月中的天数(是这个月的第几天)
  9. %f: 微秒(范围[0,999999])
  10. %H: 小时(24小时制,[0, 23])
  11. %I: 小时(12小时制,[0, 11])
  12. %j: 日在年中的天数 [001,366](是当年的第几天)
  13. %m: 月份([01,12])
  14. %M: 分钟([00,59])
  15. %p: AM或者PM
  16. %S: 秒(范围为[00,61],为什么不是[00, 59],参考python手册~_~)
  17. %U: 周在当年的周数当年的第几周),星期天作为周的第一天
  18. %w: 今天在这周的天数,范围为[0, 6],6表示星期天
  19. %W: 周在当年的周数(是当年的第几周),星期一作为周的第一天
  20. %x: 日期字符串(如:04/07/10)
  21. %X: 时间字符串(如:10:43:39)
  22. %y: 2个数字表示的年份
  23. %Y: 4个数字表示的年份
  24. %z: 与utc时间的间隔 (如果是本地时间,返回空字符串)
  25. %Z: 时区名称(如果是本地时间,返回空字符串)
  26. """
  27. import datetime
  28. import time
  29. UTC_PATTERN = '%Y-%m-%dT%H:%M:%S.%fZ'
  30. LOCAL_PATTERN = '%Y-%m-%d %H:%M:%S'
  31. def string_to_dt(string, pattern='%Y-%m-%d'):
  32. """
  33. 字符串转为日期
  34. """
  35. return datetime.datetime.strptime(string, pattern)
  36. def dt_to_string(date, pattern='%Y-%m-%d %H:%M:%S'):
  37. """
  38. 日期转为字符串
  39. """
  40. return date.strftime(pattern)
  41. def string_to_ts(string, pattern='%Y-%m-%dT%H:%M:%S.%f'):
  42. """
  43. 日期转为时间戳
  44. Example:
  45. string_to_ts(2015-01-01)
  46. 1420041600
  47. """
  48. return int(time.mktime(time.strptime(string, pattern)))
  49. def ts_to_string(int_time, pattern='%Y-%m-%dT%H:%M:%S.%f'):
  50. """
  51. 时间戳->字符串
  52. """
  53. return time.strftime(pattern, time.localtime(int_time))
  54. def now_string(pattern='%Y-%m-%d %H:%M:%S'):
  55. """
  56. 获取当前时间戳
  57. """
  58. return datetime.datetime.now().strftime(pattern)
  59. def iso_string_to_ts(string):
  60. """
  61. iso标准时间转时间戳
  62. """
  63. return time.mktime(time.strptime(string, '%Y-%m-%dT%H:%M:%S.%f'))
  64. def now_iso_string():
  65. """
  66. iso标准时间
  67. """
  68. return datetime.datetime.now().isoformat('T')
  69. def now_utc_iso_string():
  70. """
  71. iso标准时间
  72. """
  73. return datetime.datetime.utcnow().isoformat('T')
  74. def now_utc_dt():
  75. """
  76. 获取当前utc时间
  77. """
  78. return datetime.datetime.utcnow()
  79. def now_dt():
  80. """
  81. 获取当前时间
  82. Example:
  83. now_dt()
  84. datetime.datetime(2020, 5, 16, 6, 15, 7, 39060)
  85. """
  86. return datetime.datetime.now()
  87. def now_ts(unit='s', ndigits=0):
  88. """
  89. 获取当前时间戳
  90. unit: 单位 (s: 秒 ms: 毫秒)
  91. ndigits: 小数点位数
  92. """
  93. unit_dict = {
  94. 'ms': 1,
  95. 's': 0,
  96. }
  97. ts = time.time()
  98. if unit_dict.get(unit):
  99. ts = ts * (1000 ** unit_dict.get(unit))
  100. if ndigits:
  101. return round(ts, ndigits)
  102. return int(ts)
  103. def today_ts():
  104. """
  105. 获取当日时间戳
  106. """
  107. today_dt = datetime.date.today()
  108. return int(time.mktime(today_dt.timetuple()))
  109. def utc_to_beijing(utc_string, pattern='%Y-%m-%dT%H:%M:%S.%fZ'):
  110. """UTC时间转北京时间(+8:00)"""
  111. utc_ts = string_to_ts(utc_string, pattern=pattern)
  112. beijing_ts = utc_ts + (3600 * 8)
  113. return ts_to_string(beijing_ts, pattern='%Y-%m-%d %H:%M:%S')
  114. def beijing_to_utc(beijing_string, pattern='%Y-%m-%d %H:%M:%S'):
  115. """本地时间转UTC时间(-8:00)"""
  116. beijing_ts = string_to_ts(beijing_string, pattern=pattern)
  117. utc_ts = beijing_ts - (3600 * 8)
  118. return ts_to_string(utc_ts, pattern='%Y-%m-%dT%H:%M:%S.%fZ')
  119. if __name__ == '__main__':
  120. # t = '2020-08-02T01:00:00.000Z'
  121. # print(utc_to_beijing(t))
  122. # t = "2020-08-02T16:00:00.000Z"
  123. # d = string_to_dt(t, "%Y-%m-%dT%H:%M:%S.%fZ")
  124. # print(d)
  125. # print(datetime.datetime.now() + datetime.timedelta(minutes=-1)).strftime("%Y-%m-%d %H:%M:%S")
  126. # print(today_ts())
  127. # print(string_to_ts('2021-03-25-09-53-39', '%Y-%m-%d-%H-%M-%S'))
  128. # print(now_ts(unit='ms'))
  129. # print(now_ts(unit='s'))
  130. print(now_ts())
  131. # out = string_to_ts('2021-07-16', '%Y-%m-%d')
  132. # print(out)
  133. # print(string_to_ts('2022-06-01 22:00:00', pattern='%Y-%m-%d %H:%M:%S')) # 1654092000