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

Latest commit

 

History

History
34 lines (22 loc) · 401 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 401 Bytes

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()