How to use autobahn.ws with django?

*爱你&永不变心* 提交于 2019-12-05 02:44:53

问题


Need for websockets in my project. Found out crossplatform solution autobahn.ws but only tutorial for pure python is available. How to use autobahn as chat server in django project?


回答1:


Simply add the following bit of code to the python script where you setup your websocket.

if __name__ == '__main__': #pragma nocover
    # Setup environ
    sys.path.append(os.getcwd())
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myapp.settings")
    import django
    django.setup()

Now your code that creates a web socket can make use of django models and other features just as if it was a view.



来源:https://stackoverflow.com/questions/36999970/how-to-use-autobahn-ws-with-django

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!