nash
nash

Reputation: 1

socketio in python

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

Answers (2)

Abilio Soares
Abilio Soares

Reputation: 21

Try this:

pip install socketIO-server

Upvotes: 1

Michael Place
Michael Place

Reputation: 3046

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

Upvotes: 0

Related Questions