xenoslib 0.4.0__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.
Files changed (25) hide show
  1. {xenoslib-0.4.0/xenoslib.egg-info → xenoslib-0.4.1}/PKG-INFO +1 -1
  2. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/__init__.py +1 -1
  3. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/about.py +1 -1
  4. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/time_utils.py +37 -33
  5. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/tools/config_loader.py +7 -1
  6. {xenoslib-0.4.0 → xenoslib-0.4.1/xenoslib.egg-info}/PKG-INFO +1 -1
  7. {xenoslib-0.4.0 → xenoslib-0.4.1}/LICENSE +0 -0
  8. {xenoslib-0.4.0 → xenoslib-0.4.1}/README.md +0 -0
  9. {xenoslib-0.4.0 → xenoslib-0.4.1}/setup.cfg +0 -0
  10. {xenoslib-0.4.0 → xenoslib-0.4.1}/setup.py +0 -0
  11. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/__main__.py +0 -0
  12. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/base.py +0 -0
  13. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/dev.py +0 -0
  14. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/extend.py +0 -0
  15. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/linux.py +0 -0
  16. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/mail.py +0 -0
  17. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/mock.py +0 -0
  18. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/onedrive.py +0 -0
  19. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/tools/__init__.py +0 -0
  20. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/win_trayicon.py +0 -0
  21. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib/windows.py +0 -0
  22. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib.egg-info/SOURCES.txt +0 -0
  23. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib.egg-info/dependency_links.txt +0 -0
  24. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib.egg-info/requires.txt +0 -0
  25. {xenoslib-0.4.0 → xenoslib-0.4.1}/xenoslib.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xenoslib
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Xenos' common lib
5
5
  Home-page: https://github.com/XenosLu/xenoslib.git
6
6
  Author: Xenocider
@@ -10,4 +10,4 @@ elif sys.platform == "linux":
10
10
  elif sys.platform == "darwin":
11
11
  from .linux import * # noqa
12
12
  from .base import * # noqa
13
- from .time_utils import * # noqa
13
+ from .time_utils import * # noqa
@@ -4,4 +4,4 @@ __url__ = "https://github.com/XenosLu/xenoslib.git"
4
4
  __author__ = "Xenocider"
5
5
  __author_email__ = "xenos.lu@gmail.com"
6
6
  __license__ = "MIT License"
7
- __version__ = "0.4.0"
7
+ __version__ = "0.4.1"
@@ -10,68 +10,72 @@ from datetime import datetime
10
10
 
11
11
  logger = logging.getLogger(__name__)
12
12
 
13
+
13
14
  # 添加多语言支持
14
15
  def get_system_language():
15
16
  """获取系统语言环境"""
16
- lang = os.getenv('LANG', '').split('.')[0]
17
- return lang if lang and '_' in lang else 'en_US'
17
+ lang = os.getenv("LANG", "").split(".")[0]
18
+ return lang if lang and "_" in lang else "en_US"
19
+
18
20
 
19
21
  # 创建翻译字典
20
22
  TRANSLATIONS = {
21
- 'zh_CN': {
22
- 'days': ('', ''),
23
- 'hours': ('小时', '小时'),
24
- 'minutes': ('分钟', '分钟'),
25
- 'seconds': ('', ''),
26
- 'updated': '最近更新',
27
- 'ago': '',
28
- 'file_error': '获取文件信息失败'
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",
29
40
  },
30
- 'en_US': {
31
- 'days': ('day', 'days'),
32
- 'hours': ('hour', 'hours'),
33
- 'minutes': ('minute', 'minutes'),
34
- 'seconds': ('second', 'seconds'),
35
- 'updated': 'last updated',
36
- 'ago': 'ago',
37
- 'file_error': 'Failed to get file info'
38
- }
39
41
  }
40
42
 
43
+
41
44
  def timedelta_to_human_readable(delta, lang=None):
42
45
  """将时间差转换为人类可读格式(支持中英双语)"""
43
46
  if lang is None:
44
47
  lang = get_system_language()
45
-
46
- trans = TRANSLATIONS.get(lang, TRANSLATIONS['en_US'])
48
+
49
+ trans = TRANSLATIONS.get(lang, TRANSLATIONS["en_US"])
47
50
  days = delta.days
48
51
  hours, remainder = divmod(delta.seconds, 3600)
49
52
  minutes, seconds = divmod(remainder, 60)
50
53
 
51
54
  time_units = {
52
- "days": (days, trans['days']),
53
- "hours": (hours, trans['hours']),
54
- "minutes": (minutes, trans['minutes']),
55
- "seconds": (seconds, trans['seconds']),
55
+ "days": (days, trans["days"]),
56
+ "hours": (hours, trans["hours"]),
57
+ "minutes": (minutes, trans["minutes"]),
58
+ "seconds": (seconds, trans["seconds"]),
56
59
  }
57
60
 
58
61
  for unit, (value, labels) in time_units.items():
59
62
  if value > 0:
60
63
  # 处理英文单复数
61
- if lang.startswith('en_') and value > 1:
64
+ if lang.startswith("en_") and value > 1:
62
65
  return f"{value} {labels[1]}"
63
- return f"{value}{labels[0]}" if lang.startswith('zh_') else f"{value} {labels[0]}"
64
-
66
+ return f"{value}{labels[0]}" if lang.startswith("zh_") else f"{value} {labels[0]}"
67
+
65
68
  # 默认返回0秒
66
- zero_label = "0" + trans['seconds'][0] if lang.startswith('zh_') else f"0 {trans['seconds'][1]}"
69
+ zero_label = "0" + trans["seconds"][0] if lang.startswith("zh_") else f"0 {trans['seconds'][1]}"
67
70
  return zero_label
68
71
 
72
+
69
73
  def log_file_update_time(lang=None):
70
74
  """显示调用文件最近更新时间(支持中英双语)"""
71
75
  if lang is None:
72
76
  lang = get_system_language()
73
- trans = TRANSLATIONS.get(lang, TRANSLATIONS['en_US'])
74
-
77
+ trans = TRANSLATIONS.get(lang, TRANSLATIONS["en_US"])
78
+
75
79
  try:
76
80
  stack = inspect.stack()
77
81
  for frame_info in stack:
@@ -80,11 +84,11 @@ def log_file_update_time(lang=None):
80
84
  break
81
85
  else:
82
86
  file_path = __file__
83
-
87
+
84
88
  mtime = datetime.fromtimestamp(os.path.getmtime(file_path))
85
89
  delta_str = timedelta_to_human_readable(datetime.now() - mtime, lang)
86
90
  filename = os.path.basename(file_path)
87
-
91
+
88
92
  # 双语日志输出
89
93
  log_msg = (
90
94
  f"{filename} {trans['updated']}: "
@@ -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._loader._raw_config[self._section])
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__":
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xenoslib
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Xenos' common lib
5
5
  Home-page: https://github.com/XenosLu/xenoslib.git
6
6
  Author: Xenocider
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