David Hyman
David Hyman
https://github.com/timothycrosley/hug/blob/a0a1ec83d0bbc43bebc64eb3b645297db35619d7/hug/interface.py#L539-L550 Forgive the pun - on using `parse_body=False`, we are sent `body` forced to `None`, whereas I think I expected it to be the result of `request.stream`/`request.stream.read()`, without any additional...
Calling .get on the manager still returns soft deleted records. For now, this is my workaround: ``` python class BaseManager(SoftDeleteManager): def get(self, *pargs, **kwargs): return self.filter().get(*pargs, **kwargs) ``` The issue...
https://github.com/touilleMan/marshmallow-mongoengine/issues/14