Skip to content

Commit 05e2be5

Browse files
committed
basics.py添加了time_now函数
1 parent 2cfe57d commit 05e2be5

File tree

2 files changed

+34
-18
lines changed

2 files changed

+34
-18
lines changed

gitopenlib/utils/basics.py

+23-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# @Description : 包含基本的文件读写,指定扩展名文件查找等基本工具
99

1010

11-
__version__ = "0.22.16"
11+
__version__ = "0.22.17"
1212

1313

1414
import json
@@ -22,6 +22,20 @@
2222
from gitopenlib.utils import basics as gb
2323

2424

25+
def time_now():
26+
"""获取当前时间,包括时间戳和格式化后的时间。
27+
28+
Returns
29+
-------
30+
Tuple[int, str]:
31+
时间戳,格式化后的时间
32+
"""
33+
time_stamp = time.time()
34+
time_local = time.localtime(time_stamp)
35+
time_format = time.strftime("%Y-%m-%d %H:%M:%S", time_local)
36+
return time_stamp, time_format
37+
38+
2539
def quit() -> None:
2640
"""用于临时打断程序,方便调试。"""
2741
lineno = sys._getframe(1).f_lineno
@@ -203,8 +217,7 @@ def split_strip(
203217
for item in strings:
204218
item = str(item).strip()
205219
result.append(
206-
gb.remove_0_str([it.strip()
207-
for it in item.split(sep, maxsplit)])
220+
gb.remove_0_str([it.strip() for it in item.split(sep, maxsplit)])
208221
)
209222
return result
210223

@@ -353,13 +366,17 @@ def dict2json(data: dict) -> str:
353366
str:
354367
返回json字符串。
355368
"""
369+
356370
def set_default(value):
357371
if isinstance(value, set):
358372
temp = list(value)
359373
temp.sort()
360374
return temp
361375
raise TypeError
362-
return json.dumps(data, ensure_ascii=False, separators=[",", ":"], default=set_default)
376+
377+
return json.dumps(
378+
data, ensure_ascii=False, separators=[",", ":"], default=set_default
379+
)
363380

364381

365382
def json2dict(astr: str) -> dict:
@@ -475,7 +492,7 @@ def chunks(arr, m) -> List[List]:
475492
分割后的每个子list都是返回结果list的一个元素。
476493
"""
477494
n = int(math.ceil(len(arr) / float(m)))
478-
return [arr[i: i + n] for i in range(0, len(arr), n)]
495+
return [arr[i : i + n] for i in range(0, len(arr), n)]
479496

480497

481498
def chunks1(arr, size) -> List[List]:
@@ -491,7 +508,7 @@ def chunks1(arr, size) -> List[List]:
491508
List[List]:
492509
分割后的每个子list都是返回结果list的一个元素。
493510
"""
494-
chunked_list = [arr[i: i + size] for i in range(0, len(arr), size)]
511+
chunked_list = [arr[i : i + size] for i in range(0, len(arr), size)]
495512
return chunked_list
496513

497514

setup.py

+11-12
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,20 @@
2727
2828
AUTHOR = "gitopen"
2929
REQUIRES_PYTHON = ">=3.6.0"
30-
VERSION = "0.2.28.20"
30+
VERSION = "0.2.28.21"
3131

3232
# What packages are required for this module to be executed?
3333
REQUIRED = [
34-
# "scikit-learn",
35-
# "pandas",
36-
# "seaborn",
37-
# "matplotlib",
38-
# "tqdm",
39-
# "requests",
40-
# "pymongo",
41-
# "emoji",
42-
# "fake_useragent",
43-
# "lxml",
44-
# "psutil",
34+
"pandas",
35+
"tqdm",
36+
"psutil",
37+
"emoji",
38+
"jieba",
39+
"matplotlib",
40+
"pymongo",
41+
"scipy",
42+
"seaborn",
43+
"fake_useragent",
4544
]
4645

4746
# What packages are optional?

0 commit comments

Comments
 (0)