Metadata-Version: 2.1
Name: timework
Version: 0.4.0
Summary: measure / limit execution time using with-statements or decorators, cross-platform
Home-page: https://github.com/bugstop/python-timework
Author: bugstop
Author-email: pypi@isaacx.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# timework

[![PyPI](https://img.shields.io/pypi/v/timework)](https://pypi.org/project/timework/)
[![CodeFactor](https://www.codefactor.io/repository/github/bugstop/python-timework/badge)](https://www.codefactor.io/repository/github/bugstop/python-timework)
[![Coverage Status](https://coveralls.io/repos/github/bugstop/python-timework/badge.svg?branch=master)](https://coveralls.io/github/bugstop/python-timework?branch=master)
[![platform](https://img.shields.io/badge/platform-linux%20%7C%20macos%20%7C%20windows-red)](https://github.com/bugstop/python-timework)

measure / limit execution time using with-statements or decorators, cross-platform

## Install

```bash
pip install timework
```

## Usage

```python
import timework as tw
```

### Statement `with`

**Todo: README**

#### timework.Stopwatch

> measure execution time

### Decorator `@`

**Todo: README** read docstrings and tests for more details

#### timework.timer

> measure execution time

#### timework.limit

> limit execution time

## License

MIT License &copy; <a href="https://github.com/bugstop" style="color: black !important; text-decoration: none !important;">bugstop</a>


