Metadata-Version: 2.1
Name: ez-timer
Version: 0.0.1
Summary: The simplest way to time a block of code.
Home-page: https://github.com/lukewood/ez-timer
Author: Luke Wood
Author-email: lukewoodcs@gmail.com
License: Apache License 2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: Unix
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
Provides-Extra: tests
Requires-Dist: flake8 ; extra == 'tests'
Requires-Dist: isort ; extra == 'tests'
Requires-Dist: black ; extra == 'tests'
Requires-Dist: pytest ; extra == 'tests'

# ez-timer
The easiest way to time a function call in Python.

## Installation
ez-timer can be installed from pypi:

```bash
pip install ez-timer
```

## Usage
Using ez-timer is simple:

```python
from ez_timer import ez_timer

with ez_timer() as timer:
  # run expensive computation
  time.sleep(1)

print(timer.result)
# > 1.0001
```

That's all.  That is the API.


