0

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.!

Nazik
  • 8,696
  • 27
  • 77
  • 123
nash
  • 1

2 Answers2

1

Try this:

pip install socketIO-server

0

I think what you want is from socketio.server import SocketIOServer

Michael Place
  • 2,986
  • 1
  • 19
  • 18