java的ssh和django对比_详解基于django实现的webssh简单例子

from asgiref.sync import async_to_sync

from channels.generic.websocket import WebsocketConsumer

import paramiko

import threading

import time

from channels.layers import get_channel_layer

channel_layer = get_channel_layer()

class MyThread(threading.Thread):

def __init__(self, id, chan):

threading.Thread.__init__(self)

self.chan = chan

def run(self):

while not self.chan.chan.exit_status_ready():

time.sleep(0.1)

try:

data = self.chan.chan.recv(1024)

async_to_sync(self.chan.channel_layer.group_send)(

self.chan.scope['user'].username,

{

"type": "user.message",

"text": bytes.decode(data)

},

)

except Exception as ex:

print(str(ex))

self.chan.sshclient.close()

return False

class EchoConsumer(WebsocketConsumer):

def connect(self):

# 创建channels group, 命名为:用户名,并使用channel_layer写入到redis

async_to_sync(self.channel_layer.group_add)(self.scope['user'].username, self.channel_name)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值