I am migrating my django project to pylons and am up to form validations. Is the builtin formencode module sufficient for form validation or is WTforms a "better" option? What would be the advatanges of using wtforms?

I chose sqlalchemy as the orm backend so something that plays nicely with that would be nice too.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

WTForms is very similar to django forms. If you are migrating you should probably use it to speedup your migration.

link|improve this answer
feedback

I also recommend WTForms it's much easier to use than formencode and have builtin sqlalchemy extensions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.