I would like a form validation library that

1.separate html generation from form validation;

2.validation errors can be easily serialized, eg. dumped as a json object

What form validation library would you choose in a python web project?

link|improve this question

72% accept rate
feedback

5 Answers

Disclaimer

Generally speaking I'm a little wary about HTML form libraries now. If you use something from a mega-framework, you invariably have to bring in the whole mega-framework as your dependency.

Many sub-components of many mega-frameworks claim to not depend on the framework but let's not kid ourselves. If you don't use one, there are at least a dozen form libraries that I know of out there with a wide range of differences in capabilities. Just the choices alone can get quite confusing. Generally speaking, as Ian Bicking says many years ago and is still true, I think the notion of one form library that suits everybody is quite ludicrous. In fact I'd argue you probably need to think twice before deciding you really need one. Chances are mostly of the time you just need a form validation library like FormEncode. It really depends on how you want to use it.

For me, since I don't use a mega-framework, I'd choose something light-weight, easy to pick up and configure, and something that doesn't get in the way of the normal usage of HTML/JS/CSS.

END Disclaimer

I've tried ToscaWidgets, ToscaWidgets 2, Formish, Deform, and WTForms (not to be confused with WTForm, tho they are quite similar). I have to say none of them is anywhere near perfect. Here's my experience with them:

  • ToscaWidgets, ToscaWidgets 2 - Extremely powerful, but also extremely complicated. ToscaWidgets 2 is much better but it's still quite alpha ATM. It takes quite a bit of ninja skills to setup and your code tend to bloat up fairly quickly whenever you need to customize the default templates.
  • Formish/Deform - Almost as powerful as TW but Formish is dormant now. It's also quite tightly bound to Mako so if you don't use Mako, it's probably not for you. Deform is a rewrite of Formish but it brings in tons of Zope dependencies. Chameleon is also not quite there yet in terms of supporting other templating languages other then ZPT. These 2 libraries are also not particularly easy to setup.
  • WTForm - Very simple, doesn't get in your way and it's very active in terms of development. It's nowhere near as powerful as the above libraries but it generally takes care of the 80% use cases you might encounter so it's good enough. My only complain so far is the inability to pickle the widgets.

There are also quite a few libraries sprung up recently like Reform, Fungiform, Formular etc... If anybody tries out one of these, do let us know what you think.

link|improve this answer
feedback

I'd probably pick WTForms.

link|improve this answer
feedback

It depends wheather, and then, what type of framework you use.

For your task, I would recommend you to use the web2py-Framework, which is easy to use and still "mighty". It has form-validation by default (the web2py-book is free), that does exactly what you want: It sepereates the html generation from the validation and does this automatically, but you can, if you wish, customize it.

An example:

def display_form():
    form=FORM('Your name:',
              INPUT(_name='name', requires=IS_NOT_EMPTY()),
              INPUT(_type='submit'))
    if form.accepts(request.vars, session):
        response.flash = 'form accepted'
    elif form.errors:
        response.flash = 'form has errors'
    else:
        response.flash = 'please fill the form'
    return dict(form=form)

It's also possible to serialize errors, but for those questions it's the best to ask them on the web2py-group. They're very nice and will help you very fast.

Hope it helps! Best regards..

link|improve this answer
@Satoru.Logic thanks for -1 for an answer, I spend my time for.. anyway, explain what do you mean with "web2py sucks"? – Joschua Jul 7 '10 at 12:34
>.< Because I'm suffering from a legacy system that is built with web2py. In web2py, implicit is much more common than explicit, just think about all those global variables ... the web2py file-based session is such a var, and I didn't see any easy way to change for another session implementation ... – Satoru.Logic Jul 7 '10 at 13:08
why do you think, you have to use the session-variable? also the most others are set in db.py, but you can remove them, like e.g. db, auth, crud, service, mail. – Joschua Jul 7 '10 at 18:00
1  
@Satoru.Logic: whether this is true or not, your comment adds no value – gbn May 12 '11 at 11:35
+1 for web2py sucking. The global environment and everything being implicit make just about everything harder, especially testing. It's like writing PHP in Python, except worse, because you keep forgetting it isn't real Python. – Mike A Aug 16 '11 at 13:21
show 1 more comment
feedback

it depends on what underlying framework you use.

for django , built in form framework is best,

while kay uses extended version of zine's form system

and tipfy uses WTForms.

django's built in system is best so far .

what framework do you use under the hood ?

link|improve this answer
Thanks. I am currently using Django's built in form framework. Just wondering if there are any other form library that I can try. – Satoru.Logic Jul 10 '10 at 15:16
if you have specific need, i recommend extending built in framework, i have tried many but nothing beats django. – iamgopal Jul 10 '10 at 15:28
feedback

This topic is a bit on the old side, but I thought I'd shamelessly plug a library I've been writing for this very purpose. It's not exclusive to HTML forms, but was written with them, at least partially, in mind.

I wasn't feeling very creative when I named it, so "Validator" will have to do for now. Here you go: https://github.com/wilhelm-murdoch/Validator

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.