llazzaro
llazzaro

Reputation: 4188

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.

Upvotes: 9

Views: 3775

Answers (3)

Antonio Beamud
Antonio Beamud

Reputation: 2341

Go to the pseudo-standard form validator for pyramid:

Simple Form validator and rendering library

Upvotes: 3

lostdorje
lostdorje

Reputation: 6460

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.

Upvotes: 7

gawel
gawel

Reputation: 2048

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

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

Upvotes: 3

Related Questions