[Django]-How can I secure a Django site

3πŸ‘

βœ…

I have created my own solution to this – meet Django-Perimeter.

This app isn’t packaged (yet) so you’ll need to clone the source and add it in manually to your own django site, but it does work. It provides the ability to generate access tokens, and then secure access to the site (the entire site, not parts of it) using those tokens.

[UPDATE]

This is now available via PyPI – http://pypi.python.org/pypi/django-perimeter

You can install using pip install django-perimeter

Leave a comment