Gevent For the Working Python Developer
sdiehl.github.io
Gevent For the Working Python Developer
1–10 of 10 posts
Re: Gevent For the Working Python Developer
#2Gevent looks like a nice system, but as far as I can tell doesn't support Python 3. Does anyone have a sense of when support is planned?
Re: Gevent For the Working Python Developer
#3Thanks for providing such a nice post. Article and examples were explained well.
Re: Gevent For the Working Python Developer
#4Do some post-response clean up using uWSGI+Gevent
Re: Gevent For the Working Python Developer
#5Great works, thanks.
I like the tracing of execution, very helpful!
Re: Gevent For the Working Python Developer
#6Gevent looks like a nice system, but as far as I can tell doesn't support Python 3. Does anyone have a sense of when support is planned?
After a short googling I found this saying there's a python 3 fork https://github.com/surfly/gevent/issues/38
No idea if it's getting merged soon or at all
Re: Gevent For the Working Python Developer
#7Gevent looks like a nice system, but as far as I can tell doesn't support Python 3. Does anyone have a sense of when support is planned?
I expect there will be some serious push for that. Not sure from which side, but at least the web frameworks and openstack will be interested. (unless they'll just migrate to tulip instead)
Re: Gevent For the Working Python Developer
#8Gevent looks like a nice system, but as far as I can tell doesn't support Python 3. Does anyone have a sense of when support is planned?
Unfortunately, quite a few critical libraries still only Python 2.7. Many of them, including gevent, are definitely trying to port to Python 3 but it's sometimes not an easy task.
Re: Gevent For the Working Python Developer
#9Great article!
I think gevent zeromq is no longer necessary
Re: Gevent For the Working Python Developer
#10Gevent looks like a nice system, but as far as I can tell doesn't support Python 3. Does anyone have a sense of when support is planned?
It's definitely harder than your average library, since greenlet (the library gevent is based on) involves such direct manipulation of the call stack / other CPython internals. I'd love to see it, but I don't think it's coming any time soon :(