I'm building Django app and implemented login function with django restframework simplejwt.
Now trying to add function to lock out users after multiple wrong login attempts.
Many people suggest django-axes package, but it only works with Django's default authentication backend, not with simplejwt's views.
Any existing python packages help for this? Otherwise, how do you implement such a function with simplejwt?