Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I use wtforms with Pylons? [closed]

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.

like image 763
TheOne Avatar asked Dec 30 '10 19:12

TheOne


2 Answers

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

like image 52
lprsd Avatar answered Sep 30 '22 07:09

lprsd


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

like image 22
virhilo Avatar answered Sep 30 '22 06:09

virhilo