1
0
mirror of https://github.com/actix/examples synced 2024-11-24 23:02:59 +01:00
examples/websockets/echo
2022-02-18 03:36:04 +00:00
..
src fmt 2022-02-18 02:44:02 +00:00
static update all websocket examples to v4 2022-02-18 01:44:53 +00:00
Cargo.toml update all websocket examples to v4 2022-02-18 01:44:53 +00:00
README.md fix static-files readme name 2022-02-18 03:36:04 +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