Metadata-Version: 1.0
Name: codetimer
Version: 0.0.0.4
Summary: simple code timer
Home-page: https://www.facebook.com/yingerking
Author: Min
Author-email: wwwee98@gmail.com
License: UNKNOWN
Description: 
                SimpleCodeTimer !
        
        Before :
        =================== CODE ====================
            def say(what):
                print "say : %s" % what
        
            say("ho!!")
        
        =================== OUTPUT ==================
            say : ho!!
        
        After :
        
        =================== CODE ====================
            import codetimer
            @codetimer.methodTimer
            def say(what):
                print "say : %s" % what
        
            say("ho!!")
        
        =================== OUTPUT ===================
            say : ho!!
            SimpleCodeTimer : say method costs 0.000028 seconds !
        
                
Keywords: runtime,timer,codetimer
Platform: UNKNOWN
