Implementing a text based captcha in Pylons
One of the must have elements on any html form as an anti-spam measure is a captcha, and the captcha technique that has worked pretty well for me is text based. So here’s how to implement one. Create a controller and name it captcha ~$ paster controller captcha Add this function to your helpers.py file [...]