knify 1.8.36__tar.gz → 1.8.38__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: knify
3
- Version: 1.8.36
3
+ Version: 1.8.38
4
4
  Summary: Development tools for python
5
5
  Home-page: https://github.com/qicongsheng/knify
6
6
  Author: qicongsheng
@@ -14,7 +14,7 @@ def now() -> datetime:
14
14
  return datetime.datetime.now()
15
15
 
16
16
 
17
- def date_to_str(date_obj: datetime, format: str = FORMAT_DATE_YYMMDDHMS) -> str:
17
+ def date_to_str(date_obj: datetime, format: str = FORMAT_YYMMDDHMS) -> str:
18
18
  if type(date_obj) == datetime.timedelta:
19
19
  return (datetime.datetime(1970, 1, 1) + date_obj).strftime(format)
20
20
  return date_obj.strftime(format)
@@ -7,7 +7,7 @@ def get_pip_name():
7
7
 
8
8
 
9
9
  def get_version():
10
- return '1.8.36'
10
+ return '1.8.38'
11
11
 
12
12
 
13
13
  def print_version():
@@ -18,8 +18,8 @@ def print_task():
18
18
  seconds=time_used.total_seconds() * (task_info['total'] / task_info['processed']))
19
19
  logger.info("Process: %.2f%% [%s/%s], Estimate: [%s/%s]\r\n" % (
20
20
  task_info['processed'] / task_info['total'] * 100, task_info['processed'], task_info['total'],
21
- dateutil.date_to_str(time_used, dateutil.FORMAT_DATE_HMS),
22
- dateutil.date_to_str(time_estimate, dateutil.FORMAT_DATE_HMS)))
21
+ dateutil.date_to_str(time_used, dateutil.FORMAT_HMS),
22
+ dateutil.date_to_str(time_estimate, dateutil.FORMAT_HMS)))
23
23
 
24
24
 
25
25
  def func_wrapper(list_objs_: list, func_) -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: knify
3
- Version: 1.8.36
3
+ Version: 1.8.38
4
4
  Summary: Development tools for python
5
5
  Home-page: https://github.com/qicongsheng/knify
6
6
  Author: qicongsheng
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes