The Ghost Of J2 Labs
The Ghost Of J2 Labs
uhh what?! json as a validator? the whole point of the to_primitive and to_native functions is to convert data to and form python native form to a form that is...
Hello. I initially created the roles mechanism as a way to have my web framework Brubeck (defunct) pass an access role name that models could then use when they export...
The loops recurse into compound models but loop across fields. Hopefully someone's data structure isnt so deep that they blow the stack there... ;) On Wednesday, November 11, 2015, Kalle...
I am the original author of Schematics, so I can say clearly why I made those decisions. By not putting those methods inside classes, we don't need to have instances...
Yes! I agree with this! On Wednesday, November 11, 2015, Kalle Tuure [email protected] wrote: > This touches on something I thought about a few days ago... What if > to_primitive()...
> @j2labs https://github.com/j2labs Well, I wouldn't recurse across an > model's own fields - I'd iterate across them. Recursion would come into > play if one of its fields was...
This does currently exist, but we would welcome it as a Schematics plugin. On Thursday, December 5, 2013, Ivan Pereira wrote: > There are some json schema for a model?...
Where it stands now, Schematics has no knowledge of JSON and I would like to keep it that way. But, jsonschema support would be very useful and we will mention...
Exactly! On Thursday, September 26, 2013, Brad Dickason wrote: > +1 for creating a new issue for new features! Will work nicely w/ our > changelog :) > > —...
I believe you are asking for a hypothetical model, so here is what I have in mind. Rough sketch, for sure. ``` class Foo(Model): s = StringType() a = AbstractType()...