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?
Asked
Active
Viewed 931 times
1 Answers
5
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.

e4c5
- 52,766
- 11
- 101
- 134