django使用channels实现通信的示例

作者:lyshark 时间:2023-12-18 01:06:59 

1.安装依赖包


pip install channels channels-redis

2.settings.py 修改加上支持


INSTALLED_APPS = [
 'django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'MyWeb.apps.MywebConfig',
 "channels",
]

django使用channels实现通信的示例

首先需要建立一个django项目。其中在你自己的app下面 生成consumers.py和routing.py配置文件。

consumers.py:相当于django的视图,也就是说所有的websocket路由过来的执行的函数都在consumers.py类似于django的视图views.py

routing.py:是websocket中的url和执行函数的对应关系。相当于django的urls.py,根据映射关系,当websocket的请求进来的时候,根据用户的请求来触发我们的consumers.py里的方法。

3.安装redis


redis 安装配置默认密码

yum install -y redis

[root@localhost ~]# vim /etc/redis.conf 开启远程
bind 0.0.0.0
protected-mode no

redis-cli -h 192.168.1.20 -p 6379

4.接着配置settings.py 最底部加上这条。

django使用channels实现通信的示例


CHANNEL_LAYERS = {
 'default': {
   'BACKEND': 'channels_redis.core.RedisChannelLayer',
   'CONFIG': {
     "hosts": [('192.168.1.20', 6379)],
   },
 },
}

ASGI_APPLICATION = "MyWeb.routing.application"

接着简单的写一下,routing.py 里面


from channels.routing import ProtocolTypeRouter

application = ProtocolTypeRouter({
 # Empty for now (http->django views is added by default)
})

进入django shell 测试是否能连接到数据库


(venv) C:\Users\LyShark\PycharmProjects\MyProject>manage.py shell
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> import channels.layers
>>> channel_layer = channels.layers.get_channel_layer()
>>> from asgiref.sync import async_to_sync
>>> async_to_sync(channel_layer.send)('test_channel', {'type': 'hello'})
>>> async_to_sync(channel_layer.receive)('test_channel')
{'type': 'hello'}
>>>

来源:https://www.cnblogs.com/LyShark/p/12214385.html

标签:django,channels,通信
0
投稿

猜你喜欢

  • pyqt5的QWebEngineView 使用模板的方法

    2022-04-17 08:23:12
  • Pycharm远程连接服务器并运行与调试

    2021-05-29 04:38:51
  • 关于 MediaPlayer 播放器参数详解

    2008-08-10 18:33:00
  • Python 使用 PyMysql、DBUtils 创建连接池提升性能

    2024-01-26 05:49:49
  • Python迭代和迭代器详解

    2023-11-20 08:52:28
  • [ASP]利用 xmlhttp 分块上传文件

    2008-07-04 14:14:00
  • 在keras 中获取张量 tensor 的维度大小实例

    2023-08-27 21:58:12
  • javascript封装的下拉导航菜单渐显效果

    2007-08-04 20:11:00
  • 编写脚本令Xtrabackup对MySQL数据进行备份的教程

    2024-01-16 06:38:25
  • pycharm导入第三方库的两种方法(永不报错)

    2022-08-28 14:21:57
  • Python单链表原理与实现方法详解

    2023-05-21 00:58:37
  • mysql中int(3)和int(10)的数值范围是否相同

    2024-01-17 16:37:48
  • 使用python matplotlib 画图导入到word中如何保证分辨率

    2023-06-30 21:07:31
  • 基于DATAFRAME中元素的读取与修改方法

    2021-11-18 03:59:09
  • Python实现定制自动化业务流量报表周报功能【XlsxWriter模块】

    2022-02-12 01:25:05
  • python实现最长公共子序列

    2023-06-14 20:53:42
  • PyCharm 光标变成黑块的解决方式

    2023-11-12 11:02:48
  • js实现黑色简易的滑动门网页tab选项卡效果

    2024-04-23 09:05:53
  • 如何使用Python修改matplotlib.pyplot.colorbar的位置以对齐主图

    2021-09-28 18:01:30
  • Vue编写多地区选择组件

    2024-06-07 15:24:40
  • asp之家 网络编程 m.aspxhome.com