I have a relatively simple script I use to run map jobs over my data, and I'd like it to run a faster by using gevent to make reads from the datastore non-blocking.
I tried adding gevent.monkey.patch_socket()
to the top of remote_api_shell.py
, but after I log in, it throws a urllib2.URLError
(traceback).
I'm new to both GAE and gevent. Is there an easier way to accomplish what I'm trying to do? Could someone point me in the right direction to get this working?