# utils **Repository Path**: footoo/utils ## Basic Information - **Project Name**: utils - **Description**: 放置一些可服用的公共辅助类库 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-06 - **Last Updated**: 2025-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 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()) ```