Metadata-Version: 2.1
Name: ezprof
Version: 0.0.1
Summary: Easy and intuitive Python profiling API
Home-page: UNKNOWN
Author: 彭于斌
Author-email: 1931127624@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Requires-Dist: colorama


EzProf
======

Easy and intuitive Python profiling API, for example:

.. code-block:: python

    import ezprof
    import time


    @ezprof.timed
    def func():
        time.sleep(0.0233)

    func()

    with ezprof.scope('hello'):
        time.sleep(0.2)

    ezprof.start('world')
    for i in range(450):
        pass
    ezprof.stop('world')

    ezprof.show()


