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?
|
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?
| ||||
|
feedback
|
|
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:
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. | |||
|
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:
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.. | |||||||||||||
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 ? | |||||
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 | |||
|
feedback
|