Getting started

Install the package

pip install useful-machines

Useful will work on any Python code by simply using the decorator.

import os
import useful

os.environ["USEFUL_API_KEY"] = "your api key"

@useful.check()
def foo():
    raise ValueError("Error")

foo()