1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00
examples/websockets/echo
2024-09-12 12:11:10 -04:00
..
src Add soft link to moved file 2024-07-21 20:26:38 -04:00
static update all websocket examples to v4 2022-02-18 01:44:53 +00:00
Cargo.toml chore: fix deps 2024-09-12 12:11:10 -04:00
README.md fix: update path for cd command (#859) 2024-07-19 19:45:43 +01: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/echo
cargo run --bin websocket-client

python client

  • pip install aiohttp
  • python websocket-client.py

if ubuntu :

  • pip3 install aiohttp
  • python3 websocket-client.py