Re: Is async class-based view available?

2021-06-10 Thread Lalit Suthar
these are some resource available which can help you https://www.youtube.com/watch?v=19Uh_PA_8Rc https://testdriven.io/blog/django-async-views/ On Thu, 10 Jun 2021 at 10:27, kazuki wrote: > I know this However, I don't know how to use it. > How can I use this to create an asynchronous AsyncListV

Re: Is async class-based view available?

2021-06-09 Thread kazuki
I know this However, I don't know how to use it. How can I use this to create an asynchronous AsyncListView or AsyncTemplateView? 2021年6月9日水曜日 13:28:16 UTC+9 sutharl...@gmail.com: > https://docs.djangoproject.com/en/3.2/topics/async/ > > On Wed, 9 Jun 2021 at 08:11, kazuki wrote: > >> I'm alrea

Re: Is async class-based view available?

2021-06-08 Thread Lalit Suthar
https://docs.djangoproject.com/en/3.2/topics/async/ On Wed, 9 Jun 2021 at 08:11, kazuki wrote: > I'm already using a web application that takes advantage of class-based > views. And I want to take advantage of the async class-based view. > However, I can't find any information when I look it up.

Is async class-based view available?

2021-06-08 Thread kazuki
I'm already using a web application that takes advantage of class-based views. And I want to take advantage of the async class-based view. However, I can't find any information when I look it up. Is there a class such as async_view? I want to use TemplateView and ListView asynchronously. -- You