django-ninja-apikey icon indicating copy to clipboard operation
django-ninja-apikey copied to clipboard

Easy to use API key authentication for Django Ninja REST Framework

Results 4 django-ninja-apikey issues
Sort by recently updated
recently updated
newest added

Add APIKeyAuthQuery to auth with url query + made the key visible for usage + special permission check

Hi is there a maintainer of this package

When using a custom user model the `username` field may not exist on the model. Django solves this by having a `get_username` method on the `User` model as documented [here](https://docs.djangoproject.com/en/4.2/ref/contrib/auth/#django.contrib.auth.models.User.get_username)....

I'm getting this when running mypy: ``` user/api/api_key.py:6: error: Skipping analyzing "ninja_apikey.models": module is installed, but missing library stubs or py.typed marker [import] ``` do you plan to add some...