Library for system monitoring and logging
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()