Django
Installation
The most basic usage is placing this package into the root of a Django project
or
pip install latta-django-recorderRegistration/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"