2
votes
0answers
18 views

Extending tornado.gen.Task

Here's the interesting bits of a stupid websocket clock: class StupidClock(websocket.WebSocketHandler): clients = {} @web.asynchronous @gen.coroutine def open(self): ...
1
vote
1answer
33 views

Python's TCPSocket vs. Asyncore

I created a simple Project with Python. It simply a server/client app. Python is server. I created this code for my server: import socketserver class MyTCPHandler(socketserver.BaseRequestHandler): ...
0
votes
0answers
36 views

Python: [Help] Best use of asynchronous timer (Non Blocking Timer)

My question is if I have a thread program that runs in an infinite loop and each loop does a simulation step, at every loop there might be a request for timer to do something. This sounds easy but the ...
1
vote
2answers
32 views

how to recieve line from a html page to twistd web server

I just want to ask that if it is possible to to receive chat from an HTML page to twisted web server and PUSH it on to another HTML page asynchronously. I just want someone to point out the way to do ...
3
votes
1answer
80 views

Python equivalent of Perl's HTTP::Async->next_response

I'm looking for a way to do the equivalent of Perl's HTTP::Async module's next_response method The HTTP::Async module doesn't spawn any background threads, nor does it use any callbacks. Instead, ...
3
votes
3answers
88 views

asynchronous subprocess with timeout

I have a problem with spawning asynchronous subprocesses with timeout in Python 3. What I want to achieve: I want to spawn multiple processes asynchronously without waiting for a results but I want ...
2
votes
1answer
64 views

Twisted / perform asynchronous http requests

I have a twisted reactor listening for incoming data. I have a second reactor performing http requests in certain time intervals sending the results to the first reactor. Both run fine. Now I would ...
2
votes
2answers
60 views

How does long-polling work in Tornado?

In Tornado's chat demo, it has a method like this: @tornado.web.asynchronous def post(self): cursor = self.get_argument("cursor", None) ...
1
vote
1answer
20 views

Using sets with the multiprocessing module

I can't seem to share a set across processes using a Manager instance. A condensed version of my code: from multiprocessing.managers import SyncManager manager = SyncManager() manager.start() ...
0
votes
1answer
32 views

With-Statement and Threading :Making function execute before run

This question is a follow up from following question:With statement and python threading I have been experimenting with python threading api. I have this code which works for what I want to achieve ...
0
votes
1answer
47 views

How to simultaneously query two APIs in Python?

Using web.py, I'm building a website in which I display search results from two third party websites through their public API. Unfortunately, for the APIs to send back the result takes about 4 ...
0
votes
0answers
26 views

Gearman python client - Key error when trying to get job status

I am new to python and Gearman. I am trying out a sample to get the status of asynchronous job. I followed the solution given here How to get status of Gearman Jobs by their uniq id? Here is my ...
0
votes
1answer
50 views

With statement and python threading

I am a noob in python trying to understand the threading module. I am using python 2.7.One of the motivation for with_statement in python was given to be code pattern of with threading.Lock(): ...
1
vote
1answer
41 views

Python threads don't work with pygobject?

Take a look at this trivial python gobject program: import threading import gobject import time def f(): while True: print "HELLO" time.sleep(1) ...
0
votes
1answer
28 views

Using `greenlet` as decorator

Would it make sense to use greenlet.greenlet as a decorator, converting a regular function to a greenlet as follows: from greenlet import greenlet @greenlet def f(args): # ... z = g.switch(u) ...
0
votes
1answer
28 views

Do you need python to run a python gtk/pyQt application?

I am considering porting what is a small application from a JavaScript bookmarklet for work to a python GTK application. However, while people can run my bookmarklet on either Chrome or Firefox, I ...
1
vote
2answers
45 views

Python watch-dog script : load url asynchronously

I have simple Python script which do check few urls : f = urllib2.urlopen(urllib2.Request(url)) as i have socket timeout setted on 5 seconds sometimes is bothering to wait 5sec * number of urls on ...
1
vote
1answer
73 views

asynchronous I/O multiplexing (socket and inter-thread)

I would like to have a Python thread wait either for data coming from one socket (serial port, TCP/IP, etc.), or for data coming from another thread. And I would like a portable Windows-and-Linux ...
0
votes
0answers
11 views

How is the request getting notified in python rq?

Did I understand http://python-rq.org/ therefore correctly, as it queues jobs in the background, but the request that has triggered the job never gets notified about the result?
0
votes
0answers
43 views

Design pattern for making asynchronous call method to go synchronous way in python

I am writing test cases for a socket program. The socket will accept messages in a thread asynchronously. I need to write a test case which will validate a specific message. From my test case I should ...
0
votes
1answer
51 views

Redis disconnecting and reconnecting on Twisted periodically

I have Twisted server with constant connection to Redis. I'm using library https://github.com/fiorix/txredisapi. Problem is that from time to time Twisted lose connection to Redis and reconnects ...
4
votes
2answers
129 views

Python async and CPU-bound tasks?

I have recently been working on a pet project in python using flask. It is a simple pastebin with server-side syntax highlighting support with pygments. Because this is a costly task, I delegated the ...
0
votes
2answers
82 views

How to convert a synchronous function to an asynchronous function in python using callbacks?

I'm using the tornado framework and all of my functions have been written synchronously. How would I make these async? class AuthLoginHandler(BaseHandler): @tornado.web.asynchronous def ...
0
votes
1answer
36 views

Handle error on a simple DNS Twisted Client

The following DNS async client works fine if all domains exist. However, if a domain name doesn't exist, the DNSNameError exception is raised and isn't not catched by my "try except" block. Then, ...
1
vote
1answer
54 views

Threads vs Asynchronous Execution in Python

I'm relatively new to threading and asynchronous programming in general, but I'm trying to understand the distinction between the two as it relates to the GIL in CPython. From the reading that I've ...
0
votes
2answers
97 views

running script multiple times simultaniously in python 2.7

Hello I am trying to run a script multiple times but would like this to take place at the same time from what I understood i was to use subprocess and threading together however when i run it it ...
3
votes
4answers
108 views

How do I send asynchronous http requests in python one at a time?

We have a queue of jobs and workers process these jobs one at a time. Each job requires us to format some data and issue an HTTP POST request, with the data as the request payload. How can we have ...
1
vote
1answer
63 views

Why does gevent.spawn not execute the parameterized function until a call to Greenlet.join?

I'd like to issue an asynchronous HTTP POST request using gevent -- I don't care about the response, I simply want to execute the request as soon as possible. However, whenever I attempt to do so ...
0
votes
0answers
34 views

Is it a good idea to use Python futures for tasks without results?

The question came up, when I started implementing asynchronous set and get operations on an object using the concurrent.futures module like this: import time from concurrent.futures import ...
3
votes
1answer
99 views

How to create bi-directional messaging using AMP in Twisted/Python

I'm trying to create a twisted daemon(the server part) that communicates with my local code base (the client part). Basically, the client is supposed to callRemote() using AMP to the daemon to start ...
3
votes
1answer
68 views

Are there any asynchronous non-network I/O frameworks for Python?

Many times, asynchronous I/O is synonymous with networked or file-based I/O (e.g. Twisted, Eventlet, asyncore ...). However, I am currently in the midst of writing a Python toolkit to control motors. ...
0
votes
0answers
101 views

Tornado async request

I have this part of code in Tornado: ............ como_url = "".join(['http://', options.como_address, ':', options.como_port, ...
1
vote
2answers
236 views

What are the Tornado and Mongodb blocking and asynchronous considerations?

I am running the Tornado web server in conjunction with Mongodb (using the pymongo driver). I am trying to make architectural decisions to maximize performance. I have several subquestions regarding ...
9
votes
1answer
159 views

Unsatisfactory job push performance with Python RQ

Trying to use python-rq to support the back end to our Web application, but pushing new jobs takes very long - up to 12 seconds. The performance hit happens when executing the enqueue_call function ...
0
votes
3answers
72 views

Giving a large dictionary to a async function is making the code very slow

I use multiprocessing in my python code to run asynchronously a function: import multiprocessing po = multiprocessing.Pool() for elements in a_list: ...
0
votes
1answer
117 views

Python in Linux: Put user input asynchronously into queue

I am trying to run a program that takes in input as a job is getting done. I have looked through several forms, and looked into the documentation. I'm running this in Debian, and I understand that I ...
3
votes
3answers
312 views

How can I use Tornado and Redis asynchronously?

I'm trying to find how can I use Redis and Tornado asynchronously. I found the tornado-redis but I need more than just add a yield in the code. I have the following code: import redis import ...
4
votes
1answer
94 views

How to correctly shut down Python RQ worker processes dynamically?

Using Python RQ, we are trying to dynamically manage worker processes. We use a custom-built worker script, which (in simplified form) is as follows: from rq import Connection, Worker ...
1
vote
2answers
179 views

How does async work in Tornado?

All examples in the Tornado documents show how we can make further HTTP requests asynchronously using Tornado. http_client = httpclient.AsyncHTTPClient() http_client.fetch("http://www.google.com/", ...
1
vote
1answer
129 views

Comparing async urlfetch to urllib2 with threads in google app engine

I have to make suds runs asynchronously, I was thinking about two ideas: (easier) Run each suds call in separate thread because GAE python 2.7 runtime allows it. (much harder) Rewrite suds lib to ...
2
votes
1answer
43 views

Twisted Producer deferred write

In the FTP Server example it uses IWriteFile which expects a consumer the code I have now currently buffers and sends 4mb chunks to a server, however the producer write doesn't seem to expect a ...
0
votes
1answer
54 views

How do I insert async to a log in mongodb?

I want to use PyMongo as a logger for a Django app. I don't mind if some inserts in the log table are lost, so I want to send a log to mongodb in another server, and continue the execution without ...
2
votes
1answer
73 views

using PIL in asynchronous code (Twisted Web)

I have a web API which receives an image, and passes it to another asynchronous service. However before passing if further I scale it down using PIL. My code looks something like that (simplifying, ...
3
votes
0answers
220 views

gevent.http.HTTPServer API suggests streaming, but instead buffers entire requests and responses

The APIs offered by gevent.http.HTTPServer would seem to support streaming in both directions. The request object does not offer the request body as a simple string, but instead provides an ...
3
votes
1answer
88 views

How can I have a python module run asynchronously and recieve calls from other modules?

So I'm currently working on adding a recommendation engine to a Django project and need to do some heavy processing (in an external module) for one of my view functions. This significantly slows down ...
2
votes
2answers
682 views

Concurrent asynchronous processes with Python, Flask and Celery

I am working on a small but computationally-intensive Python app. The computationally-intensive work can be broken into several pieces that can be executed concurrently. I am trying to identify a ...
1
vote
1answer
177 views

Nested web service calls with tornado (async?)

I am implementing a SOAP web service using tornado (and the third party tornadows module). One of the operations in my service needs to call another so I have the chain: External request in (via ...
1
vote
2answers
79 views

Twisted deferreds firing in undesired way

I have the following code # logging from twisted.python import log import sys # MIME Multipart handling import email import email.mime.application import uuid # IMAP Connection from twisted.mail ...
1
vote
1answer
170 views

Python gevent+bottle. Querying an API. How to use gevent to prevent timeout locks?

I'm using gevent + bottle for following: call API method on remote server Process result from the API return HTML I've set a tiemout for the API call (httplib/socket), but if it's set to 5 ...
3
votes
1answer
68 views

ndb.Tasklet and SyncTasklet with Multple Nested Functions

So I am trying to efficently call tasklet and subtasklets: @ndb.tasklet def getBeds(bed_key): bed = yield bed_key.get_asyn() bed_info = {} ...... raise ndb.Return(bed_info) ...

1 2 3 4 5 7