Metadata-Version: 2.1
Name: JCOtimer
Version: 5.0
Summary: This package is for measuring the time spent for a function to run.
Home-page: https://github.com/jancarloonce/JCOtimer
Author: Jan Carlo Once
Author-email: jancarloonce11@gmail.com
License: UNKNOWN
Description: # JCOtimer ![CI status](https://img.shields.io/badge/build-passing-brightgreen.svg)
        
        JCOtimer is a Python  package for measuring the time spent a function takes to execute.
        
        ## 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)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
