em1208 / adrf

Async support for Django REST framework
Other
449 stars 25 forks source link

add async serializer support #17

Closed realsama closed 1 year ago

realsama commented 1 year ago

This is a draft to add essential support for async serializers. Like Django's async support, I have added "a" as a prefix to methods that needs to be async. e.g. "save", "create", "update" and "ato_representation". The typical non-async methods still work as usual.

kwood commented 1 year ago

I think this would drastically simplify fixing #10 — I'll give that a go soon, building on top of this

Archmonger commented 1 year ago

As a note, this PR is missing documentation.