shadowshell 0.0.38__tar.gz → 0.0.39__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.
- {shadowshell-0.0.38 → shadowshell-0.0.39}/PKG-INFO +1 -1
- {shadowshell-0.0.38 → shadowshell-0.0.39}/pyproject.toml +2 -2
- shadowshell-0.0.39/src/shadowshell/file/__init__.py +10 -0
- shadowshell-0.0.39/src/shadowshell/file/file_util.py +19 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/logging/logger_factory.py +5 -4
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/monitor/monitor.py +5 -2
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell.egg-info/PKG-INFO +1 -1
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell.egg-info/SOURCES.txt +2 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/README.md +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/setup.cfg +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/__init__.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/boot/__init__.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/boot/starter.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/bootstrap.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/config/__init__.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/config/configurator.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/configurator.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/console_logger.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/git_shell.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/logger.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/logger_factory.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/logging/__init__.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/logging/console_logger.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/logging/logger.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/monitor/__init__.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/serialize/__init__.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/serialize/serializer.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/serialize/serializer_factory.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/serialize/serializer_json.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/stock_trader.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/test/__init__.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell/test/test.py +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell.egg-info/dependency_links.txt +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell.egg-info/requires.txt +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/src/shadowshell.egg-info/top_level.txt +0 -0
- {shadowshell-0.0.38 → shadowshell-0.0.39}/tests/tests.py +0 -0
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "shadowshell" # 全局唯一名称(检查PyPI是否被占用)
|
|
7
|
-
version = "0.0.
|
|
8
|
-
#version = "0.0.
|
|
7
|
+
version = "0.0.39" # 版本号(每次更新需递增)
|
|
8
|
+
#version = "0.0.65" # 版本号(每次更新需递增)
|
|
9
9
|
authors = [{ name = "shadowshell", email = "shadowshellxyz@foxmail.com" }]
|
|
10
10
|
description = "www.shadowshell.xyz"
|
|
11
11
|
readme = "README.md"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
|
|
4
|
+
"""
|
|
5
|
+
@author: shadowshell
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from shadowshell.logging import LoggerFactory
|
|
9
|
+
|
|
10
|
+
class FileUtil:
|
|
11
|
+
|
|
12
|
+
__logger = LoggerFactory.get_logger()
|
|
13
|
+
|
|
14
|
+
@staticmethod
|
|
15
|
+
def get_all(file_path, mode="r", encoding="utf-8"):
|
|
16
|
+
with open(file_path, mode, encoding = encoding) as f:
|
|
17
|
+
content = f.read()
|
|
18
|
+
FileUtil.__logger.debug(f"[{file_path}][All content]{content}")
|
|
19
|
+
return content
|
|
@@ -10,13 +10,14 @@ from shadowshell.logging.console_logger import ConsoleLogger
|
|
|
10
10
|
|
|
11
11
|
class LoggerFactory:
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
__logger = ConsoleLogger()
|
|
14
14
|
|
|
15
15
|
def __init__(self):
|
|
16
|
-
|
|
16
|
+
pass
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
@staticmethod
|
|
19
|
+
def get_logger(name = "default"):
|
|
20
|
+
return LoggerFactory.__logger
|
|
20
21
|
|
|
21
22
|
if __name__ == "__main__":
|
|
22
23
|
LoggerFactory().get_logger().info("test")
|
|
@@ -33,21 +33,24 @@ def function_monitor(class_name=None, callback=None):
|
|
|
33
33
|
def wrapper(*args, **kwargs):
|
|
34
34
|
start = time.perf_counter()
|
|
35
35
|
result = None
|
|
36
|
+
is_success = True
|
|
36
37
|
try:
|
|
37
38
|
result = func(*args, **kwargs)
|
|
38
39
|
except Exception as e:
|
|
39
40
|
logger.error(e)
|
|
41
|
+
is_success = False
|
|
40
42
|
raise
|
|
41
43
|
except:
|
|
42
44
|
logger.error(sys.exc_info()[0])
|
|
45
|
+
is_success = False
|
|
43
46
|
raise
|
|
44
47
|
finally:
|
|
45
48
|
elapsed = time.perf_counter() - start
|
|
46
49
|
# log
|
|
47
50
|
if (class_name is not None):
|
|
48
|
-
logger.info(f"[FUNCTION_MONITOR][{class_name}.{func.__name__}] has ran, time elapsed:{elapsed:.6f}s.")
|
|
51
|
+
logger.info(f"[FUNCTION_MONITOR][{class_name}.{func.__name__}] has ran, is_success={is_success}, time elapsed:{elapsed:.6f}s.")
|
|
49
52
|
else:
|
|
50
|
-
logger.info(f"[FUNCTION_MONITOR][{func.__name__}] has ran, time elapsed:{elapsed:.6f}s.")
|
|
53
|
+
logger.info(f"[FUNCTION_MONITOR][{func.__name__}] has ran, is_success={is_success}, time elapsed:{elapsed:.6f}s.")
|
|
51
54
|
|
|
52
55
|
# callback
|
|
53
56
|
if callback is not None:
|
|
@@ -17,6 +17,8 @@ src/shadowshell/boot/__init__.py
|
|
|
17
17
|
src/shadowshell/boot/starter.py
|
|
18
18
|
src/shadowshell/config/__init__.py
|
|
19
19
|
src/shadowshell/config/configurator.py
|
|
20
|
+
src/shadowshell/file/__init__.py
|
|
21
|
+
src/shadowshell/file/file_util.py
|
|
20
22
|
src/shadowshell/logging/__init__.py
|
|
21
23
|
src/shadowshell/logging/console_logger.py
|
|
22
24
|
src/shadowshell/logging/logger.py
|
|
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
|
|
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
|