byzh-core 0.0.9.6__tar.gz → 0.0.9.7__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.
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/PKG-INFO +1 -1
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Bwriter/writer.py +3 -3
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh_core.egg-info/PKG-INFO +1 -1
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/LICENSE +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/README.md +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/B_os.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Barchive/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Barchive/archive.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Brecorder/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Brecorder/record1d.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Brecorder/record2d.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Btable/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Btable/auto_table.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Bterminal/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Bterminal/cmd.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Bterminal/run_func.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Btqdm/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Btqdm/my_tqdm.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Butils/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Butils/decorator.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Butils/text_style.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Butils/timer.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/Bwriter/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh/core/__init__.py +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh_core.egg-info/SOURCES.txt +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh_core.egg-info/dependency_links.txt +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh_core.egg-info/entry_points.txt +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh_core.egg-info/requires.txt +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/byzh_core.egg-info/top_level.txt +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/setup.cfg +0 -0
- {byzh_core-0.0.9.6 → byzh_core-0.0.9.7}/setup.py +0 -0
@@ -69,9 +69,9 @@ class B_Writer:
|
|
69
69
|
t = time.strftime("%Y-%m-%d %H:%M:%S ##### ", time.localtime())
|
70
70
|
|
71
71
|
if color is None:
|
72
|
-
print(color_wrap(t
|
72
|
+
print(color_wrap(f"{t}{string}", self.color))
|
73
73
|
else:
|
74
|
-
print(color_wrap(t
|
74
|
+
print(color_wrap(f"{t}{string}", color))
|
75
75
|
|
76
76
|
def toFile(self, string:str, ifTime:bool=None):
|
77
77
|
'''
|
@@ -85,7 +85,7 @@ class B_Writer:
|
|
85
85
|
elif ifTime==True or self.time_file==True:
|
86
86
|
t = time.strftime("%Y-%m-%d %H:%M:%S ##### ", time.localtime())
|
87
87
|
|
88
|
-
self.f.write(
|
88
|
+
self.f.write(f"{t}{string}")
|
89
89
|
self.f.write("\n")
|
90
90
|
self.f.flush()
|
91
91
|
|
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
|