Metadata-Version: 2.1
Name: aio-rmq-wss-proxy
Version: 0.0.1
Summary: Asynchronous Proxy Server From RabbitMQ to WebSocket
Home-page: https://github.com/GagramanyantsA/aio_rmq_wss_proxy
Author: GagramanyantsA
Author-email: arthur_gm@mail.ru
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aio-pika (==8.3.0)
Requires-Dist: websockets (==10.4)

## Asynchronous RMQ -> Websocket Proxy Server

Here is an implementation of typical websocket server which receives messages from RMQ and process them and send to connected websocket clients

In the current state WS server is capable of:
- Running a server instance which accepts websocket connections from clients and control them;
- connecting to RabbitMQ, creating Exchange and Queue and consume on it;
- receiving messages from RMQ Queue;
- processing received RMQ messages and send them to connected websocket clients.

## Struct

<img src="project_struct.jpg">

## HOW TO

- Clone repository
- Run "cd aio_rmq_wss_proxy/"
- Run "make install"
- Run the commands "make run_server" & "make run_client" to see how does it works

Please, note that before running server and client you need to have installed and running Rabbit MQ broker.
