Reputation: 1
Kindly help me in configuring the socketio in my django module. Am using windows7 OS
File wsgi.py
Sample Code - from socketio import SocketIOServer
Error - Unresolved import:SocketIOServer
Am new to python and Django Frameworks.!
Upvotes: 0
Views: 512
Reputation: 3046
I think what you want is from socketio.server import SocketIOServer
Upvotes: 0