I'm writing a python module that will contain some functions that will manipulate a mongodb database. I am looking for a data validation module that can help me in validating input data passed to that function before saving it in database. Which python module/package you use for this purpose?
For example, lets say one of the function in module is createUser(user) which accepts a python dictionary as argument. This dictionary contains user information to save in the database. Is there any module/package I can use to validate the data supplied in dictionary and return any errors?