Marc Tamlyn

Results 33 issues of Marc Tamlyn

https://github.com/schematics/schematics http://schematics.readthedocs.io/en/latest/index.html Looks like this gets a lot of things right that we're looking at. The API is nice, the `to_primitive` is a pretty good naming convention, and the validation/coercion/conversion...

Top level API should be ideally similar to form/serializer, but it should be informed by a "second level" API which is purely functional. I have something like this in my...

``` python class Validator(object): def validate(self, value): pass def clean(self, value): self.validate(value) return value class IntegerCleaner(Validator): def clean(self, value): try: value = int(value) except ValueError: raise ValidationError(...) return value class...

Create a prototype of the validation tree, allowing similar chaining of validation/cleaning functions similar to what Naval can do (see #21).

https://github.com/WiserTogether/django-remote-forms (Django project) https://github.com/insin/newforms (JS project which was heavily inspired by Django.forms)