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
Source:stackexchange.com