[pylons-discuss] Reorganizing the Pylons organization

2014-12-25 Thread John Anderson
There is a lot of confusion around the "Pylons" organization and I think in general our http://www.pylonsproject.org/ website doesn't help alleviate any of that confusion. For example you can't even go to http://www.pylonsproject.org/projects and get a list of Pylons projects, this just redirects

Re: [pylons-discuss] Re: Finding a session

2014-12-25 Thread Mike Orr
On Wed, Dec 24, 2014 at 11:57 AM, Jonathan Vanasco wrote: > > > On Wednesday, December 24, 2014 1:52:53 PM UTC-5, Mike Orr wrote: >> >> I think I misunderstood what you meant. You mean to display the >> current session (in which case it can pull it from 'request.session' >> without knowing the ses

Re: [pylons-discuss] python 3 pyramid async solution

2014-12-25 Thread Mehdi
I use eventlet worker with gunicorn, but problem was that pyzmq is blocking process, i think. so i found this module of eventlet for pyzmq and all my problems solved! :) For pyramid + asyncio i found *aiopyramid *more intersting. but still i have to tr