You must have observed, all this while we have written tornado based applications that listen on port 8888, and in MySQL post, we had predefined our database connection details (like server, username, password etc). But what if we need to change these details based on modules or applications or configurations? Tornado, provides this with a … Continue reading Tornado – Options
Tag: User (computing)
Tornado – Authentication
As we have seen, Tornado helps you deal with Cookies and Secure cookies so what's the next logical thing? Yes, user login. Let's look at the Tornado's capability for providing user authentication. Tornado provides get_current_user() method to determine if the user is already logged in. Developers need to override this method to get the current … Continue reading Tornado – Authentication