Skip to content

Python

Installation

Terminal window
pip install latta-python-recorder

Usage

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.wrap
def divide(x, y):
return x / y