1 Star 1 Fork 2

devops_dba/devops

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
layer_group.py 707 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
import os
import sys
def main():
# 使用django配置文件进行设置
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'devops.settings')
# 让django初始化
import django
django.setup()
from user.models import User
from util.tool import hash_code
from channels.layers import get_channel_layer
from asgiref.sync import async_to_sync
channel_layer = get_channel_layer()
async_to_sync(channel_layer.group_send)('session_NbxeEnGcUv', {
"type": "chat.message",
"text": '{"status":3, "message":"系统即将关闭,请退出当前会话!- 来自组"}',
})
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/opdba/devops.git
git@gitee.com:opdba/devops.git
opdba
devops
devops
master

搜索帮助