Skip to content

Django

Installation

The most basic usage is placing this package into the root of a Django project

or

Terminal window
pip install latta-django-recorder

Registration/installation is fairly straightforward, all you have to do is install the app in settings.py

INSTALLED_APPS = [
# ...
'latta.latta.apps.LattaConfig',
# ...
]

Then you have to register the Latta middleware

MIDDLEWARE = [
# ...
'latta.latta.middleware.LattaMiddleware',
# ...
]

And as a last step provide the Latta API key

LATTA_API_KEY = "YOUR_API_KEY"