django-htauth 0.1

django-htauth is a Django app that provides a htpasswd authentication backend for Django.Configure your settings like so:INSTALLED_APPS += ('htauth',)AUTHENTICATION_BACKENDS = (    'htauth.backend.HtauthBackend',   ...