Steven Loria
Steven Loria
Thank you for the suggestion and the thorough report. I agree that this needs to be documented better. It might be appropriate to document this in marshmallow-sqlalchemy then link to...
Sorry, I'm quite busy this week so can't look into this. Thank you for investigating.. I'd welcome a PR if you arrive at a fix, or even just an analysis...
Indeed, this package declares no explicit dependencies in [`install_requires`](https://github.com/marshmallow-code/django-rest-marshmallow/blob/a7f6f4ee64135000db6352292c313112e5413be5/setup.py#L71), and that seems to have been an explicit decision from the beginning (correct me if I'm wrong @tomchristie ). My guess...
Ok, let’s go ahead and add them. Would you like to send a PR?
ModelSerializer is not currently supported. I would certainly review and merge a PR adding it though =)
Thanks for offering to work on this! Yes, I think it will look along the lines of marshmallow-sqlalchemy. It's probably also worth looking at the implementation of ModelSerializer in DRF....
Can you post code to reproduce this issue? Are you deserializing data or serializing objects?
Unfortunately, I don't really time to invest in this at the moment (I'm not using this project). I'd definitely merge documentation if someone is up to it, but won't be...
That said, I don't think there's any special magic needed to integrate these. Subclassing from e.g. ModelSchema and `Schema` should work fine. You'll just need to make sure to inherit...
Python dictionaries are unordered. I suppose we could use a `OrderedDict` by default, or perhaps if the `ordered` class Meta option is set. I may look into this within the...