knify 1.8.33__tar.gz → 1.8.34__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {knify-1.8.33 → knify-1.8.34}/PKG-INFO +1 -1
- {knify-1.8.33 → knify-1.8.34}/knify/help.py +1 -1
- {knify-1.8.33 → knify-1.8.34}/knify/threadutil.py +2 -2
- {knify-1.8.33 → knify-1.8.34}/knify.egg-info/PKG-INFO +1 -1
- {knify-1.8.33 → knify-1.8.34}/LICENSE +0 -0
- {knify-1.8.33 → knify-1.8.34}/README.md +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify/__init__.py +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify/dateutil.py +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify/listutil.py +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify/logger.py +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify/warnutil.py +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify.egg-info/SOURCES.txt +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify.egg-info/dependency_links.txt +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify.egg-info/requires.txt +0 -0
- {knify-1.8.33 → knify-1.8.34}/knify.egg-info/top_level.txt +0 -0
- {knify-1.8.33 → knify-1.8.34}/setup.cfg +0 -0
- {knify-1.8.33 → knify-1.8.34}/setup.py +0 -0
@@ -17,7 +17,7 @@ def print_task():
|
|
17
17
|
time_used = dateutil.now() - task_info['time_start']
|
18
18
|
time_estimate = datetime.timedelta(
|
19
19
|
seconds=time_used.total_seconds() * (task_info['total'] / task_info['processed']))
|
20
|
-
logger.info("Process: %.2f%% [%s/%s], Estimate: [%s/%s]" % (
|
20
|
+
logger.info("Process: %.2f%% [%s/%s], Estimate: [%s/%s]\r\n" % (
|
21
21
|
task_info['processed'] / task_info['total'] * 100, task_info['processed'], task_info['total'],
|
22
22
|
dateutil.date_to_str(time_used, dateutil.FORMAT_DATE_HMS),
|
23
23
|
dateutil.date_to_str(time_estimate, dateutil.FORMAT_DATE_HMS)))
|
@@ -44,7 +44,7 @@ def thread_partition_call(list_obj: list, func_, thread_num: int, partition_num:
|
|
44
44
|
for t_ in threads:
|
45
45
|
t_.join()
|
46
46
|
threads = []
|
47
|
-
logger.info("=================== end
|
47
|
+
logger.info("=================== end ===================")
|
48
48
|
print_task()
|
49
49
|
if index_ < len(list_partition) - 1:
|
50
50
|
logger.info("=================== start ===================")
|
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
|