Metadata-Version: 2.1
Name: elapsed-time
Version: 1.1
Summary: Measure exec time of a Python function
Home-page: https://github.com/Estebandotpy/elapsed_time
Author: Esteban Osorio
Author-email: estebandmp17@gmail.com
License: MIT
Keywords: testing,example
Description-Content-Type: text/markdown
License-File: LICENSE

# elapsed_time

```Python

from elapsed_time import elapsed

@elapsed
def test():
    for _ in range(0,10000000):
        pass

test()

>>> Elapsed time: 0.16048717498779297

```
