xenoslib 0.3.2__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xenoslib-0.3.2/xenoslib.egg-info → xenoslib-0.4.1}/PKG-INFO +1 -1
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/__init__.py +1 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/about.py +1 -1
- xenoslib-0.4.1/xenoslib/time_utils.py +99 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/tools/config_loader.py +7 -1
- {xenoslib-0.3.2 → xenoslib-0.4.1/xenoslib.egg-info}/PKG-INFO +1 -1
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib.egg-info/SOURCES.txt +1 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/LICENSE +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/README.md +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/setup.cfg +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/setup.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/__main__.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/base.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/dev.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/extend.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/linux.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/mail.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/mock.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/onedrive.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/tools/__init__.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/win_trayicon.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib/windows.py +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib.egg-info/dependency_links.txt +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib.egg-info/requires.txt +0 -0
- {xenoslib-0.3.2 → xenoslib-0.4.1}/xenoslib.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# @Author : Xenos Lu
|
|
4
|
+
# @Created : 2023-01
|
|
5
|
+
# @Updated : 2025-08-14
|
|
6
|
+
import os
|
|
7
|
+
import logging
|
|
8
|
+
import inspect
|
|
9
|
+
from datetime import datetime
|
|
10
|
+
|
|
11
|
+
logger = logging.getLogger(__name__)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 添加多语言支持
|
|
15
|
+
def get_system_language():
|
|
16
|
+
"""获取系统语言环境"""
|
|
17
|
+
lang = os.getenv("LANG", "").split(".")[0]
|
|
18
|
+
return lang if lang and "_" in lang else "en_US"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# 创建翻译字典
|
|
22
|
+
TRANSLATIONS = {
|
|
23
|
+
"zh_CN": {
|
|
24
|
+
"days": ("天", "天"),
|
|
25
|
+
"hours": ("小时", "小时"),
|
|
26
|
+
"minutes": ("分钟", "分钟"),
|
|
27
|
+
"seconds": ("秒", "秒"),
|
|
28
|
+
"updated": "最近更新",
|
|
29
|
+
"ago": "前",
|
|
30
|
+
"file_error": "获取文件信息失败",
|
|
31
|
+
},
|
|
32
|
+
"en_US": {
|
|
33
|
+
"days": ("day", "days"),
|
|
34
|
+
"hours": ("hour", "hours"),
|
|
35
|
+
"minutes": ("minute", "minutes"),
|
|
36
|
+
"seconds": ("second", "seconds"),
|
|
37
|
+
"updated": "last updated",
|
|
38
|
+
"ago": "ago",
|
|
39
|
+
"file_error": "Failed to get file info",
|
|
40
|
+
},
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def timedelta_to_human_readable(delta, lang=None):
|
|
45
|
+
"""将时间差转换为人类可读格式(支持中英双语)"""
|
|
46
|
+
if lang is None:
|
|
47
|
+
lang = get_system_language()
|
|
48
|
+
|
|
49
|
+
trans = TRANSLATIONS.get(lang, TRANSLATIONS["en_US"])
|
|
50
|
+
days = delta.days
|
|
51
|
+
hours, remainder = divmod(delta.seconds, 3600)
|
|
52
|
+
minutes, seconds = divmod(remainder, 60)
|
|
53
|
+
|
|
54
|
+
time_units = {
|
|
55
|
+
"days": (days, trans["days"]),
|
|
56
|
+
"hours": (hours, trans["hours"]),
|
|
57
|
+
"minutes": (minutes, trans["minutes"]),
|
|
58
|
+
"seconds": (seconds, trans["seconds"]),
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
for unit, (value, labels) in time_units.items():
|
|
62
|
+
if value > 0:
|
|
63
|
+
# 处理英文单复数
|
|
64
|
+
if lang.startswith("en_") and value > 1:
|
|
65
|
+
return f"{value} {labels[1]}"
|
|
66
|
+
return f"{value}{labels[0]}" if lang.startswith("zh_") else f"{value} {labels[0]}"
|
|
67
|
+
|
|
68
|
+
# 默认返回0秒
|
|
69
|
+
zero_label = "0" + trans["seconds"][0] if lang.startswith("zh_") else f"0 {trans['seconds'][1]}"
|
|
70
|
+
return zero_label
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def log_file_update_time(lang=None):
|
|
74
|
+
"""显示调用文件最近更新时间(支持中英双语)"""
|
|
75
|
+
if lang is None:
|
|
76
|
+
lang = get_system_language()
|
|
77
|
+
trans = TRANSLATIONS.get(lang, TRANSLATIONS["en_US"])
|
|
78
|
+
|
|
79
|
+
try:
|
|
80
|
+
stack = inspect.stack()
|
|
81
|
+
for frame_info in stack:
|
|
82
|
+
if frame_info.filename != __file__:
|
|
83
|
+
file_path = frame_info.filename
|
|
84
|
+
break
|
|
85
|
+
else:
|
|
86
|
+
file_path = __file__
|
|
87
|
+
|
|
88
|
+
mtime = datetime.fromtimestamp(os.path.getmtime(file_path))
|
|
89
|
+
delta_str = timedelta_to_human_readable(datetime.now() - mtime, lang)
|
|
90
|
+
filename = os.path.basename(file_path)
|
|
91
|
+
|
|
92
|
+
# 双语日志输出
|
|
93
|
+
log_msg = (
|
|
94
|
+
f"{filename} {trans['updated']}: "
|
|
95
|
+
f"{mtime:%Y-%m-%d %H:%M} ({delta_str} {trans['ago']})"
|
|
96
|
+
)
|
|
97
|
+
logger.info(log_msg)
|
|
98
|
+
except Exception as e:
|
|
99
|
+
logger.error(f"{trans['file_error']}: {e}")
|
|
@@ -244,7 +244,13 @@ class SectionProxy:
|
|
|
244
244
|
|
|
245
245
|
def __repr__(self):
|
|
246
246
|
"""String representation of the section's configuration."""
|
|
247
|
-
return yaml.dump(self.
|
|
247
|
+
return yaml.dump(self.to_dict())
|
|
248
|
+
|
|
249
|
+
def __contains__(self, key):
|
|
250
|
+
return key in self.self.to_dict()
|
|
251
|
+
|
|
252
|
+
def to_dict(self):
|
|
253
|
+
return self._loader._raw_config[self._section]
|
|
248
254
|
|
|
249
255
|
|
|
250
256
|
if __name__ == "__main__":
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|