Metadata-Version: 1.1
Name: simplestopwatch
Version: 0.3.3
Summary: A very simple python module for measuring elapsed time.
Home-page: https://github.com/kamakazikamikaze/simplestopwatch
Author: John Paulett <http://blog.7oars.com>, Kent Coble <https://github.com/kamakazikamikaze
Author-email: john -at- 7oars.com, coblekent@gmail.com
License: BSD
Download-URL: https://github.com/kamakazikamikaze/simplestopwatch
Description: simplestopwatch is a very simple Python module for measuring time.
        Great for finding out how long code takes to execute.
        
        >>> import simplestopwatch as sw
        >>> t = sw.Timer()
        >>> t.elapsed
        3.8274309635162354
        >>> print t
        15.9507198334 sec
        >>> t.stop()
        30.153270959854126
        >>> print t
        30.1532709599 sec
        
        Decorator exists for printing out execution times:
        >>> from simplestopwatch import clockit
        >>> @clockit
            def mult(a, b):
                return a * b
        >>> print mult(2, 6)
        mult in 1.38282775879e-05 sec
        6
        
        
Keywords: timer,stopwatch,execution,timeit
Platform: POSIX
Platform: Windows
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
