mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 15:13:55 +08:00
69 lines
1.5 KiB
Python
69 lines
1.5 KiB
Python
"""
|
|
时间工具模块
|
|
提供统一的时间获取功能
|
|
"""
|
|
|
|
import cnlunar
|
|
from datetime import datetime
|
|
|
|
WEEKDAY_MAP = {
|
|
"Monday": "星期一",
|
|
"Tuesday": "星期二",
|
|
"Wednesday": "星期三",
|
|
"Thursday": "星期四",
|
|
"Friday": "星期五",
|
|
"Saturday": "星期六",
|
|
"Sunday": "星期日",
|
|
}
|
|
|
|
|
|
def get_current_time() -> str:
|
|
"""
|
|
获取当前时间字符串 (格式: HH:MM)
|
|
"""
|
|
return datetime.now().strftime("%H:%M")
|
|
|
|
|
|
def get_current_date() -> str:
|
|
"""
|
|
获取今天日期字符串 (格式: YYYY-MM-DD)
|
|
"""
|
|
return datetime.now().strftime("%Y-%m-%d")
|
|
|
|
|
|
def get_current_weekday() -> str:
|
|
"""
|
|
获取今天星期几
|
|
"""
|
|
now = datetime.now()
|
|
return WEEKDAY_MAP[now.strftime("%A")]
|
|
|
|
|
|
def get_current_lunar_date() -> str:
|
|
"""
|
|
获取农历日期字符串
|
|
"""
|
|
try:
|
|
now = datetime.now()
|
|
today_lunar = cnlunar.Lunar(now, godType="8char")
|
|
return "%s年%s%s" % (
|
|
today_lunar.lunarYearCn,
|
|
today_lunar.lunarMonthCn[:-1],
|
|
today_lunar.lunarDayCn,
|
|
)
|
|
except Exception:
|
|
return "农历获取失败"
|
|
|
|
|
|
def get_current_time_info() -> tuple:
|
|
"""
|
|
获取当前时间信息
|
|
返回: (当前时间字符串, 今天日期, 今天星期, 农历日期)
|
|
"""
|
|
current_time = get_current_time()
|
|
today_date = get_current_date()
|
|
today_weekday = get_current_weekday()
|
|
lunar_date = get_current_lunar_date()
|
|
|
|
return current_time, today_date, today_weekday, lunar_date
|