Testing HTTP Basic Auth in Flask
I created a quick & dirty admin page for a flask-based website I'm
working on, and I had to add HTTP authentication support for it. Doing
this is easy.
In the app, I add:
import auth
#...
(Click through for full post...)
