An open API service indexing awesome lists of open source software.

https://github.com/mgmacias95/simple-echo-protocol

Simple echo server and client made with asyncio.
https://github.com/mgmacias95/simple-echo-protocol

asyncio echo-protocol python3

Last synced: 10 months ago
JSON representation

Simple echo server and client made with asyncio.

Awesome Lists containing this project

README

          

# Simple-echo-protocol

Simple echo server and client made with asyncio.

This code will be used as example for my talk at the [__YWT On The Beach__ meetup](https://www.meetup.com/es-ES/yeswetech/events/250109575/)

## How to use
The defined file structure allows implementing new messages for the protocol. Edit `process_request` and `process_response` functions:
* In `common.py` file to add requests and responses for both server and client.
* In `server.py` file to add requests and responses for the server.
* In `client.py` file to add requests and responses for clients.