Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

looplab/lillebror

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lillebror

Library for system monitoring and logging

Usage

Class

Decorator

NOT YET IMPLEMENTED!

The simplest use case is as a function decorator. In that case it will output usage statistics in the console after the function returns.

from lillebror import monitor

@monitor
def run():
    pass

if __name__ == '__main__':
    run()