• 大小: 19KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-15
  • 语言: Java
  • 标签: WebSoc  Django  Python  

资源简介

https://blog.csdn.net/u012751272博客代码资源,Django 使用WebSocket实时消息推送和简易聊天室,使用dwebsocket来实现,文章详见JAVAFENG

资源截图

代码片段和文件信息

#!/usr/bin/env python
import os
import sys

if __name__ == ‘__main__‘:
    os.environ.setdefault(‘DJANGO_SETTINGS_MODULE‘ ‘wstest.settings‘)
    try:
        from django.core.management import execute_from_command_line
    except ImportError as exc:
        raise ImportError(
            “Couldn‘t import Django. Are you sure it‘s installed and “
            “available on your PYTHONPATH environment variable? Did you “
            “forget to activate a virtual environment?“
        ) from exc
    execute_from_command_line(sys.argv)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-04-10 18:43  wstest\
     目录           0  2019-04-12 09:40  wstest\.idea\
     文件         135  2019-04-10 18:06  wstest\.idea\encodings.xml
     文件         308  2019-04-10 18:06  wstest\.idea\misc.xml
     文件         264  2019-04-10 18:06  wstest\.idea\modules.xml
     文件       14986  2019-04-12 09:40  wstest\.idea\workspace.xml
     文件        1231  2019-04-10 18:07  wstest\.idea\wstest.iml
     目录           0  2019-04-11 19:47  wstest\app\
     文件           0  2019-04-10 18:05  wstest\app\__init__.py
     目录           0  2019-04-11 19:47  wstest\app\__pycache__\
     文件         128  2019-04-10 18:43  wstest\app\__pycache__\__init__.cpython-36.pyc
     文件        2296  2019-04-11 19:47  wstest\app\__pycache__\views.cpython-36.pyc
     文件          63  2019-04-10 18:05  wstest\app\admin.py
     文件          81  2019-04-10 18:05  wstest\app\apps.py
     目录           0  2019-04-10 18:05  wstest\app\migrations\
     文件           0  2019-04-10 18:05  wstest\app\migrations\__init__.py
     文件          57  2019-04-10 18:05  wstest\app\models.py
     文件          60  2019-04-10 18:05  wstest\app\tests.py
     文件        3986  2019-04-11 19:47  wstest\app\views.py
     文件           0  2019-04-10 18:43  wstest\db.sqlite3
     文件         538  2019-04-10 18:05  wstest\manage.py
     目录           0  2019-04-11 19:00  wstest\templates\
     文件        4926  2019-04-11 19:00  wstest\templates\chat.html
     文件        1276  2019-04-10 18:38  wstest\templates\recmsg.html
     文件         540  2019-04-10 21:08  wstest\templates\sendmsg.html
     目录           0  2019-04-11 18:21  wstest\wstest\
     文件           0  2019-04-10 18:05  wstest\wstest\__init__.py
     目录           0  2019-04-11 18:21  wstest\wstest\__pycache__\
     文件         131  2019-04-10 18:43  wstest\wstest\__pycache__\__init__.cpython-36.pyc
     文件        2225  2019-04-10 18:49  wstest\wstest\__pycache__\settings.cpython-36.pyc
     文件        1158  2019-04-11 18:21  wstest\wstest\__pycache__\urls.cpython-36.pyc
............此处省略4个文件信息

评论

共有 条评论