Senior Python developer is looking for Python or Django Jobs

2024-01-15 Thread redsto...@163.com
Greetings, I am an experienced senior Python developer with a rich background spanning over 7 years in Python/Django development. Currently, I am actively seeking opportunities in Python or Django-related positions. For a comprehensive overview of my skills, experience, and qualifications, plea

Re: What should I do if I want to send `self.channel_layer.group_send` immediately?

2024-01-15 Thread Kazuki Nagayama
oh! Good information. thank you. You can still do most of the movements. However, with this, it will only be sent to me. Is it not possible to do something like group_send? Should I repeat self.send over and over again? I looked at the internal implementation of group_send, but I couldn't figure

Re: Who wants to join us to program an app for the play store that will consist of a nutritionist on the phone

2024-01-15 Thread KUYESO ROGERS
Hello, I am interested, add +256772820840 Kind regards, *Kuyeso Rogers | **Bcs. Software Engineering - **Mbarara University of Science and Technology* *Website|| ku-yesu.tech * On Thu, Jan 11, 2024 at 10:12 PM Victoria Adebiyi Precious < victoriaadebiy...@gmail.

Re: What should I do if I want to send `self.channel_layer.group_send` immediately?

2024-01-15 Thread sachin shende
By using self.send() after the first group_send, you ensure that the message is immediately sent, and then the subsequent messages are sent based on time.sleep... So before import asyncio ,u can write this: self.send(text_data=json.dumps({"type": "chat_message", "message": "first_chatMessage"}))