[pylons-discuss] Re: Adding Websocket elements to existing Pyramid app

2019-12-08 Thread Kevin Tewouda
Hi Andrew, You can also check the python socketio project which integrates well with wsgi applications. the javascript implementation also exists . Best regards Le dimanche 24 novembre 2019 07:40:02 UTC+1, Andrew Martin a

Re: [pylons-discuss] Re: Adding Websocket elements to existing Pyramid app

2019-12-08 Thread Thierry Florac
Hi Andrew, I'm rally sorry but I have very much work actually and I have forgotten your request! :( I'll come back with links to my packages ASAP, but I have to add a few comments because the documentation is far for complete (but I'm looking for contributors if anyone is interested! :D :D ).

Re: [pylons-discuss] Re: Adding Websocket elements to existing Pyramid app

2019-11-25 Thread Andrew Martin
Yeah, I'm very interested in seeing as many different approaches to solving this as possible. Please do share if you don't mind. On Sunday, November 24, 2019 at 3:56:57 AM UTC-6, Thierry Florac wrote: > > Hi Andrew, > > I've built a notification mecanism using websockets in a Pyramid >

Re: [pylons-discuss] Re: Adding Websocket elements to existing Pyramid app

2019-11-24 Thread Thierry Florac
Hi Andrew, I've built a notification mecanism using websockets in a Pyramid application. This is based on a second application process using gunicorn, while the main application process is using classic WSGI (with Apache). The two processes also communicate using websockets; I handle client

[pylons-discuss] Re: Adding Websocket elements to existing Pyramid app

2019-11-23 Thread Andrew Martin
One thing I figured out almost immediately is that I can do what I want with ${ request.resource_url(resource, host=api_url) } Where the api_url is configured at runtime. That might be the simplest way to do things. But I will look into aiopyramid as mentioned. Thanks! On Sunday, November 24,