ezKit 1.8.6__py3-none-any.whl → 1.8.7__py3-none-any.whl
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.
- ezKit/utils.py +10 -5
- {ezKit-1.8.6.dist-info → ezKit-1.8.7.dist-info}/METADATA +1 -1
- {ezKit-1.8.6.dist-info → ezKit-1.8.7.dist-info}/RECORD +6 -6
- {ezKit-1.8.6.dist-info → ezKit-1.8.7.dist-info}/LICENSE +0 -0
- {ezKit-1.8.6.dist-info → ezKit-1.8.7.dist-info}/WHEEL +0 -0
- {ezKit-1.8.6.dist-info → ezKit-1.8.7.dist-info}/top_level.txt +0 -0
ezKit/utils.py
CHANGED
@@ -507,13 +507,18 @@ def list_print_by_step(
|
|
507
507
|
"""
|
508
508
|
try:
|
509
509
|
|
510
|
-
|
510
|
+
result: list = []
|
511
511
|
|
512
|
-
if
|
513
|
-
|
512
|
+
if len(data) <= number:
|
513
|
+
result.append(data)
|
514
|
+
else:
|
515
|
+
data_list = list_split(data, number, debug=debug)
|
516
|
+
if data_list is None or v_true(data_list, list) is False:
|
517
|
+
return False
|
518
|
+
result = data_list
|
514
519
|
|
515
|
-
for
|
516
|
-
print(*
|
520
|
+
for item in result:
|
521
|
+
print(*item, sep=separator)
|
517
522
|
|
518
523
|
return True
|
519
524
|
|
@@ -11,10 +11,10 @@ ezKit/redis.py,sha256=HVofsLdSBbBHAR-veumsrjTwZQspRDy2FXNR6MDCCXs,1972
|
|
11
11
|
ezKit/sendemail.py,sha256=Qxu4XQkHRPeX6FSJdzj-MXND9NyKcgHljbafNmy34H0,8243
|
12
12
|
ezKit/stock.py,sha256=p-l6Tv0oZdJ3juxkddScphm7BW4vH-mBozBgSH1Qu0w,1730
|
13
13
|
ezKit/token.py,sha256=9CAZhPdXiRiWoOIeWmP0q6L3j1zQAv4YcVWH95Tjefs,1755
|
14
|
-
ezKit/utils.py,sha256=
|
14
|
+
ezKit/utils.py,sha256=jK0rt5tHwJTlq3bbUTUL0Si7KpsGCSKpN_Quqd2gvvA,49096
|
15
15
|
ezKit/xftp.py,sha256=XyIdr_2rxRVLqPofG6fIYWhAMVsFwTyp46dg5P9FLW4,7774
|
16
|
-
ezKit-1.8.
|
17
|
-
ezKit-1.8.
|
18
|
-
ezKit-1.8.
|
19
|
-
ezKit-1.8.
|
20
|
-
ezKit-1.8.
|
16
|
+
ezKit-1.8.7.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
17
|
+
ezKit-1.8.7.dist-info/METADATA,sha256=xMyifNIkqKq0CxFRjQsdjcjHNgUnJgICm1VC2u-is3g,190
|
18
|
+
ezKit-1.8.7.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
19
|
+
ezKit-1.8.7.dist-info/top_level.txt,sha256=aYLB_1WODsqNTsTFWcKP-BN0KCTKcV-HZJ4zlHkCFw8,6
|
20
|
+
ezKit-1.8.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|