Skip to content
forked from navdeep-G/showme

Quick application debugging and analysis for Python

Notifications You must be signed in to change notification settings

woody0303/showme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ShowMe -- Quick and easy debugging for Python

(Beware, this is still in doc-driven development)

Usage

Print passed-in arguments.

@showme.args
def complex_function(a, b, c):…

Print function execution time.

@showme.time
def complex_function(a, b, c):…

Print global variables available at runtime.

@showme.globals
def complex_function(a, b, c):…

Print local variables available at runtime.

@showme.locals
def complex_function(a, b, c):…

Pretty print returned data.

@showme.return
def complex_function(a, b, c):…

Pretty print function documentation.

@showme.docs
def complex_function(a, b, c):…

Print size (in bytes) of returned data. @showme.size def complex_function(a, b, c):…

About

Quick application debugging and analysis for Python

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%