but i’m getting an exception: 'coroutine' object has no attribute 'get'
Could you please give me some hints where too look up? (links to docs, or files in the source code? (i cloned master to see if i could find some glues, but still searching)
Django doesn’t have support for async views yet - that’s still in development in a pull request (https://github.com/django/django/pull/11650) and it’ll be a while until I can solve enough of the edge cases to get it to land.
As Andrew says he hasn’t found a way to do async views yet, but you can combine Django with another framework for asynchronous paths (e.g. Websockets). See the end of my post.