Metadata-Version: 2.1
Name: pystopwatch2
Version: 0.1.0
Summary: Multi-functional Stopwatch for Python
Home-page: https://github.com/ildoonet/pystopwatch2
License: MIT License
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: enum34

# pystopwatch
Multi-functional Simple Stopwatch for Python.

- Multiple Stopwatch by Tags
- Manage elapsed times by tags
- Example of use : profiling python codes(latency by functions, ...)

## Install

```
$ pip install pystopwatch2
```

## Usage

```python
from pystopwatch import PyStopwatch

w = PyStopwatch()
w.start(tag='a')
time.sleep(1)
w.pause('a')
e = w.get_elapsed('a')

# e = 1.0xxx

e.clear('a')
```


