Metadata-Version: 2.4
Name: evomeai_utils
Version: 0.1.5
Summary: evomeai_utils is a python package for evomeai project.
Project-URL: HomePage, https://gitee.com/footoo/utils
Author-email: flowithwind <flowithwind@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown

This is a utils package 

## EConifig
a normal ini config class

## LogTimer
a multi-thread safe Time record class, used to calculte timecost of code blocks

```
with LogTimer('step1'):
    step1_func()

with LogTimer("step2_async"):
    Thread(target=step2_async_func, args=('D',)).start()
   
print(LogTimer.output())
```