Hi,
I am looking for an option to build a Python-based websocket proxy with the following characteristics
* Easily run as a standalone Python process
* Accept incoming websocket connections
* Run some Python logic whether the connection is correctly authenticated, against external authenticator
* Proxy the connection to the upstream websocket server picked from a map
Looks like building a ws4py app is the way to go as it has both client and server functionality and is quite well established and documented. However, does there exist any prior examples or sample projects doing WebSocket proxying I can check before getting my hands dirty?
Cheers,
Mikko