1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/websockets/echo
2023-01-02 20:33:43 +00:00
..
src fix comments (#568) 2022-08-05 17:11:18 +01:00
static update all websocket examples to v4 2022-02-18 01:44:53 +00:00
Cargo.toml move a couple more things to workspace deps 2023-01-02 20:33:43 +00:00
README.md Fix path in readme file for websocket echo example (#536) 2022-03-16 02:21:03 +00:00
websocket-client.py bug fix for websocket chat python file (#575) 2022-09-09 20:03:41 +01:00

websocket

Simple echo websocket server.

Usage

server

cd websockets/echo
cargo run --bin websocket-server
# Started http server: 127.0.0.1:8080

web client

rust client

cd websockets/websocket
cargo run --bin websocket-client

python client

  • pip install aiohttp
  • python websocket-client.py

if ubuntu :

  • pip3 install aiohttp
  • python3 websocket-client.py