Python
Installation
pip install latta-python-recorderUsage
Usage for python apps is very simple, all you have to do is decorate a function you want to watch and Latta is going to record everything
from latta import Latta
latta = Latta('YOUR_API_KEY')
@latta.wrapdef divide(x, y): return x / y