glance-times

Who will watch the watchman? Glance can.


Keywords
logging, utility
License
MIT
Install
pip install glance-times==0.3.0

Documentation

glance (timing utility)

Simple to use package that keeps track of various functions execution times. Ala timeit, but in your code. Useful utility as a

Installation

pip install glance-times

Simple Example

from glance import Glance

gl = Glance()

@gl.watch
def func_a():
    # some functionality.