Metadata-Version: 2.1
Name: cumtime
Version: 0.3.0
Summary: Cumulative measurement of execution time
Home-page: https://github.com/atsuoishimoto/cumtime.py
Author: Atsuo Ishimoto
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/atsuoishimoto/cumtime.py/issues
Project-URL: Source, https://github.com/atsuoishimoto/cumtime.py
Keywords: cumtime
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Cumtime

```
import cumtime
cumtime.register('cum')

with c('t1'):
    time.sleep(0.01)

cum.begin('t1')
time.sleep(0.01)
cum.end()

print(cum)
# t1: sum:0.02 n:2 ave:0.01'
```




