Tried using django-deep-translator, with Deepl backend, however it doesn't work due to wrong Deepl API implementation on this package.
What I Did
./manage.py translate_messages -l pl
raises error: deep_translator.exceptions.AuthorizationException: Unauthorized access with the api key 6d91d25b-8aae-a083-dca5-d8e78a74d9cc
Description
Tried using django-deep-translator, with Deepl backend, however it doesn't work due to wrong Deepl API implementation on this package.
What I Did
Possible fix
After quick investigation I have found that current DeepL API uses authorization in request header. https://github.com/DeepLcom/deepl-python/blob/main/deepl/translator.py
While this package is trying to add it to a request itself.