Metadata-Version: 1.2
Name: zeroinger
Version: 0.0.3
Summary: group of utils 4 python
Home-page: https://github.com/liangjz92/zeroinger-utils
Author: liangjz
Author-email: liangjianzeng@qq.com   
License: MIT
Description-Content-Type: text/markdown
Description: 
        # zeroinger
        一些可以加速的python编码的常用轮子
        ### RaceTimer
        ```
        from zeroinger.time.race_timer import RaceTimer
        import time
        timer = RaceTimer.create_instance()
        time.sleep(1)
        print(timer.snapshot())
        time.sleep(1)
        print(timer.duriation())
        timer.reset()
        time.sleep(1)
        print(timer.duriation())
        pass
        #--------------------------------
        1000
        2002
        1003
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
