Re: Use of asyncio

2019-02-07 Thread nm
If you're specifically looking for Django-related uses of asyncio, there's 
Channels  for websockets (and 
other stuff). You can find an example application - a simple chat - in the 
tutorial in the documentation.

W dniu sobota, 2 lutego 2019 03:39:57 UTC+1 użytkownik kannamshivakumar417 
napisał:
>
> Can anyone explain to which applications asyncio used for.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8a47b75b-eac0-49fd-ab16-37479001c404%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Use of asyncio

2019-02-06 Thread PASCUAL Eric
Hi,

There has been quite a lot PyCon talks about this topic, including introduction 
ones for people not used to Python async extensions.

You can find  them on YouTube by asking for "pycon asyncio" for instance.

Best

Eric


From: django-users@googlegroups.com  on behalf 
of Andréas Kühne 
Sent: Wednesday, February 6, 2019 17:48
To: django-users@googlegroups.com
Subject: Re: Use of asyncio

Hi Shiva,

This isn't technically a django question - django itself doesn't have asyncio 
support (yet). So I would search on the web for information about how asyncio 
works in Python. I know that Michael Kennedy has a course in asyncio and how it 
works: https://training.talkpython.fm/courses/all

Regards,

Andréas


Den lör 2 feb. 2019 kl 03:39 skrev shiva kumar 
mailto:kannamshivakumar...@gmail.com>>:
Can anyone explain to which applications asyncio used for.

--
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
django-users+unsubscr...@googlegroups.com<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMsYeuHMYhz-m%3D3hr%2BAwzdmOGx3UMr1HNDSYLV-MAWyxtRWZ4A%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAMsYeuHMYhz-m%3D3hr%2BAwzdmOGx3UMr1HNDSYLV-MAWyxtRWZ4A%40mail.gmail.com?utm_medium=email_source=footer>.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
django-users+unsubscr...@googlegroups.com<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCcCcpZCk4vbmQW2WaODWTW1VuEiBt5w75wqatfV8_EKjg%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAK4qSCcCcpZCk4vbmQW2WaODWTW1VuEiBt5w75wqatfV8_EKjg%40mail.gmail.com?utm_medium=email_source=footer>.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/AM0P193MB030828AA6F739488D97488988C6F0%40AM0P193MB0308.EURP193.PROD.OUTLOOK.COM.
For more options, visit https://groups.google.com/d/optout.


Re: Use of asyncio

2019-02-06 Thread Andréas Kühne
Hi Shiva,

This isn't technically a django question - django itself doesn't have
asyncio support (yet). So I would search on the web for information about
how asyncio works in Python. I know that Michael Kennedy has a course in
asyncio and how it works: https://training.talkpython.fm/courses/all

Regards,

Andréas


Den lör 2 feb. 2019 kl 03:39 skrev shiva kumar <
kannamshivakumar...@gmail.com>:

> Can anyone explain to which applications asyncio used for.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMsYeuHMYhz-m%3D3hr%2BAwzdmOGx3UMr1HNDSYLV-MAWyxtRWZ4A%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCcCcpZCk4vbmQW2WaODWTW1VuEiBt5w75wqatfV8_EKjg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Use of asyncio

2019-02-01 Thread shiva kumar
Can anyone explain to which applications asyncio used for.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMsYeuHMYhz-m%3D3hr%2BAwzdmOGx3UMr1HNDSYLV-MAWyxtRWZ4A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.