https://github.com/robert-96/python-websocket-demo
WebSocket echo server.
https://github.com/robert-96/python-websocket-demo
Last synced: 4 months ago
JSON representation
WebSocket echo server.
- Host: GitHub
- URL: https://github.com/robert-96/python-websocket-demo
- Owner: Robert-96
- License: mit
- Created: 2023-09-29T22:17:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-22T21:02:33.000Z (over 1 year ago)
- Last Synced: 2025-01-27T17:54:04.292Z (5 months ago)
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-websocket-demo
A simple WebSocket echo server for demonstration purposes.
## Getting Started
Clone the repository to your local machine:
```
git clone https://github.com/Robert-96/python-websocket-demo.git
cd python-websocket-demo
```Install the required dependencies:
```
pip install -r requirements
```## Usage
Run the WebSocket echo server:
```
python echo.py
```## Development Setup
To set up the development environment, install the additional dependencies for development:
```
pip install -r requirements-dev.txt
```Run the tests using `pytest`:
```
pytest test.py
```## License
This project is licensed under the [MIT License](LICENSE).