1
0
mirror of https://github.com/actix/examples synced 2024-11-28 00:12:57 +01:00
examples/websockets/echo
2022-03-06 00:43:10 +00:00
..
src reduce futures dep 2022-03-06 00:15:19 +00:00
static update all websocket examples to v4 2022-02-18 01:44:53 +00:00
Cargo.toml reduce futures dep 2022-03-06 00:15:19 +00:00
README.md format markdown 2022-03-06 00:43:10 +00:00
websocket-client.py update all websocket examples to v4 2022-02-18 01:44:53 +00:00

websocket

Simple echo websocket server.

Usage

server

cd websockets/websocket
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