lillebror

Library for process monitoring and logging


License
Apache-2.0
Install
pip install lillebror==0.2.3

Documentation

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