Jotham Apaloo

Results 7 comments of Jotham Apaloo

@Rdbaker yes i don't see any examples in the docs, the [http://marshmallow.readthedocs.org/en/latest/examples.html?highlight=dump#quotes-api-flask-sqlalchemy](marshmallow) docs are a bit better for this here's an example. it'd be tremendous if you add something to...

how about under [quick start - serialization](http://marshmallow-jsonapi.readthedocs.org/en/latest/quickstart.html#serialization) alongside the example of serializing a single object? https://raw.githubusercontent.com/marshmallow-code/marshmallow-jsonapi/dev/docs/quickstart.rst

Thanks, Jeff to elaborate: I have a flast-restful api which uses marshmallow schema to serialize and preprocess ORM objects. http://marshmallow-jsonapi.readthedocs.org/en/latest/quickstart.html#flask-integration (not worried about the jsonapi-part; it's easy enough to wrap...

thanks for the input @rbarrois! i will make some time this evening to create a couple usage examples. I will also take a look at the factory_boy modules/api and add...

Here's a hypothetical usage ``` import datetime as dt from marshmallow import Schema, fields from factory_boy import factory # serializes any object to dictionary based on class attributes class UserSchema(Schema):...

Sorry for delay gentleman, I started a new job this week and was wrapping up projects for clients before that. I still need to review mixer and see if it's...

thanks @klen - I'm also chatting with factory_boy and marshmallow maintainers and considering a separate library that integrates generators with marshmallow. glad to make a PR if I decide to...