Tagged Questions

Gevent is a coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop.

learn more… | top users | synonyms

16
votes
2answers
826 views

Need help understanding Comet in Python (with Django)

After spending two entire days on this I'm still finding it impossible to understand all the choices and configurations for Comet in Python. I've read all the answers here as well as every blog post I ...
14
votes
11answers
1k views

How to efficiently do many tasks a “little later” in Python?

I have a process, that needs to perform a bunch of actions "later" (after 10-60 seconds usually). The problem is that those "later" actions can be a lot (1000s), so using a Thread per task is not ...
14
votes
3answers
5k views

Eventlet or gevent or Stackless + Twisted, Pylons, Django and SQL Alchemy

We're using Twisted extensively for apps requiring a great deal of asynchronous io. There are some cases where stuff is cpu bound instead and for that we spawn a pool of processes to do the work and ...
8
votes
2answers
792 views

Why shouldn't I use async (evented) IO

I am writing now writing some evented code (In python using gevent) and I use the nginx as a web server and I feel both are great. I was told that there is a trade off with events but was unable to ...
7
votes
1answer
124 views

Browser multiplayer network strategy - does this seem like a viable solution?

I'm interested in producing some sort of multiplayer RPG as a purely browser based game, with little or no plugin requirements. Having done quite a bit of research I've arrived at the following plan. ...
6
votes
1answer
177 views

Stackless in PyPy and PyPy + greenlet - differences

New version of PyPy ships with integrated Stackless. As far as I know the bundled Stackless is not the same as the origin Stackless from 2001 with continuations. So mainly it is the green threads ...
6
votes
1answer
914 views

Twisted, gevent eventlet - When would I use them

Under what circumstances would something like eventlet/gevent be better than twisted? Twisted seems like the most used, but eventlet/gevent must have some advantages... I'm not looking for an answer ...
5
votes
1answer
452 views

Should I use orbited or gevent for integrating comet functionality into a django app

I have been working with django for some time now and have written several apps on a setup that uses apache2 mod_wsgi and a postgresql database on ubuntu. I have a app that uses xsendfile to serve ...
5
votes
3answers
738 views

Python: unit testing socket-based code?

I'm writing a Python client+server that uses gevent.socket for communication. SAre there any good ways of testing the socket-level operation of the code (for example, verifying that SSL connections ...
5
votes
3answers
566 views

How to make Django work with unsupported MySQL drivers such as gevent-mysql or Concurrence's MySQL driver?

I'm interested in running Django on an async framework like Concurrence or gevent. Both frameworks come with its own async MySQL driver. Problem is Django only officially supports MySQLdb. What do I ...
4
votes
2answers
67 views

Django, Ajax long polling, Postgresql: idle transaction

I implemented a chat, using ajax long polling and Gevent. To read, the client ajax the update view and wait with Gevent.event.wait for an update. Problem: The Postgresql transaction opened by ...
4
votes
1answer
91 views

Making Django go green

I have a Django management command that makes thousands of TCP/UDP requests. I've used Gevent to speed this up as I've restructured my code to work as coroutines. The socket connections no longer ...
4
votes
3answers
63 views

Implementing a multi-producer, multi-consumer paradigm in Gevent

I have some producer function which rely on I/O heavy blocking calls and some consumer functions which too rely on I/O heavy blocking calls. In order to speed them up, I used the Gevent ...
4
votes
1answer
111 views

why python gevent is slower than serial ?

i am using gevent to preform concurrent download. based on this example this is the code: import gevent from gevent import monkey urls = ...
4
votes
1answer
268 views

Gevent monkeypatching breaking multiprocessing

I am attempting to use multiprocessing's pool to run a group of processes, each of which will run a gevent pool of greenlets. The reason for this is that there is a lot of network activity, but also a ...
4
votes
1answer
467 views

run web app with gevent

I want to try playing around with gevent as a web server and application framework. I don't see any way to "restart" the server or update the application code without killing and starting the whole ...
4
votes
2answers
600 views

pymongo + gevent: throw me a banana and just monkey_patch?

Quickie here that needs more domain expertise on pymongo than I have right now: Are the "right" parts of the pymongo driver written in python for me to call gevent monkey_patch() and successfully ...
4
votes
2answers
600 views

gevent does not install properly on Ubuntu

I want to experiment with gevent, but after installing it I can't load any gevent module. The installation steps are: sudo apt-get install libevent-dev sudo pip install greenlet sudo pip install ...
4
votes
1answer
477 views

How to scale gevent-socketio server?

I'm planning to build a realtime service with gevent-socketio (released by Jeffrey Gelens). For some purposes, I need to scale my service with many gevent-socketio servers. I think it can be used as a ...
4
votes
2answers
433 views

How do I detect a socket disconnection? / How do I call socket.recv with a timeout?

I'm using gevent patched socket to connect to a streaming server and I'm using an adsl connection. I don't control the server but in my tests, if I stop the server I can detect the disconnection by ...
4
votes
1answer
197 views

How to solve this “NotImplementedError” urllib2 / gevent error on windows?

I'm trying to open an url with urllib2 patched with gevent on Windows XP: from gevent import monkey monkey.patch_all() import urllib2 opener = urllib2.build_opener() request = ...
4
votes
1answer
783 views

Using gevent and multiprocessing together to communicate with a subprocess

Question: Can I use the multiprocessing module together with gevent on Windows in an efficient way? Scenario: I have a gevent based Python application doing asynchronous I/O on Windows. The ...
4
votes
2answers
546 views

Capturing event of client disconnecting! - Gevent/Python

I'm using long polling for a chat with gevent. I'm using Event.wait() when waiting for new messages to be posted on the chat. I would like to handle the occasion a client disconnects with some ...
3
votes
2answers
48 views

monitoring gevent exceptions in jobs

I'm building an application using gevent. My app is getting rather big now,there are a lot of jobs being spawned and destroyed. Many different kind of jobs. Now I've noticed that when one of these ...
3
votes
2answers
56 views

Gevent threads don't finish even though all the Queue items are exhausted

I'm trying to set up a simple producer-consumer system in Gevent but my script doesn't exit: import gevent from gevent.queue import * import time import random q = Queue() workers = [] def ...
3
votes
2answers
48 views

Spawning functions asynchronously using Gevents

I was undergoing Gevents ( python library for asych functionality ) and wrote a very small program to understand how it works , but the results were quite baffling. The below is the code import ...
3
votes
1answer
80 views

py2app'ed application runs properly in alias mode but not when bundled

I have a pyobjc app running in a 32-bit only python build that makes use of the gevent library. Everything works great in py2app'ed alias mode, but once I build an app bundle, the gevent module can't ...
3
votes
1answer
280 views

Policy Server with gevent-websocket

working on trying to get gevent-websocket working and it's not connecting to my policy server for the flash specification. My policy.py is as follows: from gevent.server import StreamServer policy = ...
3
votes
1answer
81 views

Talking between Flash and a TCP Server (Python)

What is the best recommended way to talk between a Flash client and gevent? Should I use XMLSocket or is there something better... also, should I create my own syntax "such as MOVE 1, 500, 3000" or ...
3
votes
2answers
388 views

Build Cython and gevent on OSX

When I build gevent, I get an error Traceback (most recent call last): File "/usr/local/Cellar/python/2.7.1/bin/cython", line 7, in from Cython.Compiler.Main import main File ...
3
votes
1answer
460 views

running cherrypy application on gevent wsgi server

I have an existing cherrypy application but I want to know is if it's at all possible to run it on the gevent wsgi server. I imagine I can but I don't have access to a linux server to test out gevent ...
3
votes
3answers
495 views

Using PyQt with gevent

Does anyone used PyQt with gevent? How to link PyQt loop to the gevent? http://www.gevent.org/ - coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API ...
3
votes
1answer
602 views

Using gevent with python xmlrpclib

Is it possible to use python's standard libs xmlrpclib with gevent? Currently i'm tried to use monkey.patch_all(), but without success. from gevent import monkey monkey.patch_all() import gevent ...
3
votes
1answer
1k views

Is it safe to use SQLalchemy with gevent?

I know that some database drivers and other libraries providing connection to external services are incompatible with coroutine-based network libraries. However, I couldn't find out if SQLAlchemy can ...
2
votes
0answers
57 views

What's the best socket.io server for use with Django - gevent or tornadio2?

I'm working on a WebApp using backbone.js and socket.io on the client side, and Django on the server side. I'd like to do "push" from the server when data changes (just like in a chat app). I came ...
2
votes
3answers
42 views

how to capture a traceback in gevent

I've spawned a Greenlet and linked it to a callable. Some time later, the Greenlet fails with an Exception. The linked callable gets called. That's all great! Here's the issue: The traceback for the ...
2
votes
1answer
85 views

using gevent monkey patching with threading makes thread work serially

I am using gevent and i am monkey patching all. It seem like the monkey patching causes the threading to work serially. My code: import threading from gevent import monkey; monkey.patch_all() class ...
2
votes
2answers
132 views

Python, gevent, urllib2.urlopen.read(), download accelerator

I am attempting to build a download accelerator for Linux. My program utilizes gevent, os, and urllib2. My program receives a URL and attempts to download the file concurrently. All of my code is ...
2
votes
1answer
127 views

mongoengine with gevent, how to close/end connections?

I'm getting connection refused because too many open connections: 204 when trying to do MyApp.objects.get(foo=bar) in a gevent process. In models.py I have connect('my_db'). In my script I do ...
2
votes
3answers
440 views

Python + Gevent + MultiProcessing : Very Easy beginner question on my first Program

Anyone know what is wrong with this code? It simply "loads" forever. No output. "Sites" is a list of a few dozen strings. num_worker_threads = 30 def mwRegisterWorker(): while True: try: ...
2
votes
3answers
263 views

Byte Array in Python

How can I represent a byte array (like in Java with byte[]) in Python? I'll need to send it over the wire with gevent. byte key[] = {0x13, 0x00, 0x00, 0x00, 0x08, 0x00};
2
votes
2answers
303 views

Would puka work well with gevent or eventlet?

I was reading about the newer Python AMQP library Puka (not to be confused with Pika) and was wondering if the way it handles it's event loop would be compatible with gevent or eventlet. Based on my ...
2
votes
2answers
161 views

Blocking calls with Gevent and WSGI

I've just started working with coroutines and have read up on gevent and greenlets. For a test I served this code through gevents pywsgi module: from gevent.pywsgi import WSGIServer import gevent ...
2
votes
3answers
295 views

How are web apps written in Python deployed?

I'm an ex-PHP developer and I'm struggling to get over the mindset that I can write an nginx config script, create the directories, fire up nginx + PHP-FPM, upload my code and let it run. I want to ...
2
votes
3answers
1k views

I'm looking for gevent for Python 2.7 for windows

However gevent depends upon greenlet and the .msi version I found fails to install and the egg for 2.6 refuses to install. The msi version fails as follows. C:\Windows\system32>easy_install ...
2
votes
1answer
205 views

Reading data from memcache sometimes fails

I've written a gevent-based program that allows its web clients to quickly exchange messages through it (so it works like a hub). Since I only support polling mechanism at this moment, I've written ...
2
votes
3answers
650 views

SSL and WSGI apps - Python

I have a WSGI app that I would like to place behind SSL. My WSGI server is gevent. What would a good way to serve the app through SSL in this case be?
2
votes
2answers
1k views

Attempting to use gevent library in Python: “ImportError: cannot import name core”

I'm attempting to use the gevent library in a Python app I'm writing. However, both easy_install and installing it manually appears to be failing. Any suggestions? Python 2.6.2 (r262:71600, Aug 5 ...
1
vote
1answer
81 views

gevent.WSGIServer request method mystery

I'm getting some really strange behaviour when running gevent's WSGIServer. It seems like every request that comes through is having its method interpreted incorrectly.. If I send the following ...
1
vote
2answers
61 views

Remove input line in telnet session

Is it possible to remove the input line in a telnet session from the buffer, so when you press enter, the text you typed is removed, but still sent to the telnet server? I know there is a way to ...

1 2