Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Form handling in Pyramid

Since Pyramid does not have any form dependencies, I need recommendations for form handling. This covers form generation, validation, etc. I only know wtforms, but I dont mind to use some other thing more advanced.

like image 408
llazzaro Avatar asked Sep 02 '11 19:09

llazzaro


3 Answers

I'd recommend deform. Beyond supporting form generation and validation it has great documentation, a running demo app and it supports localization and ajax. I don't believe formalchemy directly support ajax.

like image 98
lostdorje Avatar answered Oct 07 '22 12:10

lostdorje


I'm using FormAlchemy http://docs.formalchemy.org/pyramid_formalchemy/

Pyramid's author wrote Deform https://docs.pylonsproject.org/projects/deform/dev/

like image 34
gawel Avatar answered Oct 07 '22 11:10

gawel


Go to the pseudo-standard form validator for pyramid:

Simple Form validator and rendering library

like image 3
Antonio Beamud Avatar answered Oct 07 '22 12:10

Antonio Beamud