CouchDB and Pylons: User Registration and Login

In the previous tutorial, we learned how to get CouchDB and Pylons up and running, as well as create a simple page counter. Now we are going to implement a simple user authentication system. This tutorial will teach you how to use formencode to validate forms and CouchDB to store our user data. Let’s start by creating a new pylons project and some controllers. $ paster create -t pylons userdemo $ cd userdemo $ paster controller main $ paster controller auth Also, delete public/index....

February 21, 2009 · Chris Moos