Metadata-Version: 2.1
Name: JCOtimer
Version: 7.0
Summary: JCOtimer is a Python utility/package for measuring function runtime.
Home-page: https://github.com/jancarloonce/JCOtimer
Author: Jan Carlo Once
Author-email: jancarloonce11@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# JCOtimer ![CI status](https://img.shields.io/badge/build-passing-brightgreen.svg)

JCOtimer is a Python utility/package for measuring function runtime.

## Installation

### Requirements
* Windows/Linux/OSX
* Python 3.x

Check it on [Pypi](https://pypi.org/project/JCOtimer/).

`$ pip install JCOtimer`

## Usage

```python
from JCOtimer.timer import timer

@timer #use as decorator
def foo():
   print('bar' * 999999)

foo() # returns 'Time it took to run the function: 0.4072580337524414 secs'

```


## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.


## License
[MIT](https://choosealicense.com/licenses/mit/)

## Author
[Jan Carlo E. Once](https://www.facebook.com/jancarlo.once)


