py-good
py-good copied to clipboard
Slim yet handsome validation library.
Assuming this library is still maintained, and just isn't updated because is feature-complete and free of known bugs, it would probably be good to put a note about that in...
It would be nice if the following schema gave a better path to the error: ```python s = Schema({ 'this': { 'that': Any( ['the'], {'thine': 'thou'} ) } }) s({'this':...
Is it possible to extend schema like in voluptuous? I really miss this feature. > > > from voluptuous import Schema > > > person = Schema({'name': str}) > >...