I'm looking for a Python (<3) validation API something like Java's Bean Validation or Spring validation. I'm not looking for a library that is limited to form validation, since I want to validate domain objects.

Do you know a Python API for validating of domain objects?

link|improve this question

69% accept rate
feedback

4 Answers

maybe you should try formencode? it's not form-only validation library

link|improve this answer
However formencode is sometimes html-centric (e.g. multiple error messages might be concatenated by '<br>' into a single string). Also formencode has some weird naming in some cases (overwrite '_process', inherit from FancyValidator) and very weak unit-testing. That's why I created pycerberus. – Felix Schwarz Feb 12 '11 at 9:29
feedback

Spring.py

link|improve this answer
3  
I not a big fan of Spring, even in the Java land. But Spring in Python sounds not like a good idea to me. – deamon Jan 9 '11 at 12:39
Your opinion, nothing more. Whether you like it or not, it does offer validation services that don't depend on HTTP. – duffymo May 18 '11 at 23:07
feedback

The only libraries that are a bit like Java's Bean validation that I know (and have used) are:

  • Zope 3's zope.schema , but this is tied to using zope interfaces I think

  • SQLAlchamy's Elixir, but this is tied to using SQLAlchemy entities

I'm not sure if (or how) these could be used without depending of specific super classes

link|improve this answer
feedback

+1 for formencode and also there is promising pycerberus .

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.