Python Authentication API

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

Do you know the Python API for checking domain objects?

+4
source share
4 answers

Perhaps you should try formencode ? this is not a formal verification library

+3
source
+2
source

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

  • Zope 3 zope.schema , but this is due to the use of zope interfaces. I think

  • SQLAlchamy Elixir , but it involves using SQLAlchemy entities

I'm not sure that (or how) they can be used without hovering certain superclasses

+1
source

+1 for formencode , and there is also a promising pycerberus .

+1
source

All Articles