socket.io client/server example with Bocadillo, python-socketio and socket.io client.
This is a reproduction of the the socket.io chat tutorial, but using:
- python-socketio instead of socket.io as a server-side socket.io backend.
- Bocadillo instead of Express as a web application server.
Requires Python 3.6+.
- Python dependencies:
pip install bocadillo python-socketio
# OR
pipenv install
- Node.js dependencies:
npm install
- Fire off the server:
python app.py
- Open up a web browser at http://localhost:8000, and start chatting!
MIT