Tagged Questions
0
votes
1answer
78 views
How to return some variable once in few seconds to client?
I'm learning python+tornado currently and was stopped with this problem:
i need to write some data one every few sec (for example) to client even using self.write(var)
I've tried:
time.sleep - it's ...
1
vote
1answer
80 views
How to integrate zeromq polling into pyqt main loop?
I've got a simple PySide program (my first GUI program) in which I just have two sliders going from -100 to 100. The first slider sends its value to a hardware controller using zeromq. This controller ...
0
votes
1answer
58 views
Combining print statements with list comprehension in python
I'm writing code to send and receive messages in python using a GSM modem.
Whenever a new message is received I get the following response in a list x after reading from a serial port object.
...
0
votes
0answers
323 views
Polling for new messages received by a GSM modem using Python
I am using python to send, receive and delete messages received on a GSM modem that is connected to my laptop via a serial port.
I want to poll for new message indications so I know exactly when a ...
2
votes
1answer
201 views
Python visa serial polling function
I have an issue with one of my GPIB instruments. It is quite an old one and it is stated as IEEE-488-1978. I have been trying to get the reference manual for that version of IEEE-488 but it has not ...
3
votes
1answer
288 views
How to write a polling function in Python?
I am trying to write a function that reads the variable every 1 minute and return the value of each time. The variable name is proc:
proc = subprocess.Popen(['sshpass', '-p', password, 'rsync', ...
0
votes
2answers
220 views
Python select.select, select.poll: Corrupted Double-linked List
I have a rather large client-server network application, written in Python. I'm using select.poll to provide asynchronous capabilities. For the past six months, everything has worked fine. However, ...
0
votes
2answers
66 views
Try to revisit the URL in javascript
I want to visit certain REST URI.
$.ajax({
type: "POST",
url: url + "result/" + ticket_id,
success: function(data) {
setTimeout(function(){pollResponse(url,data.id);}, 3000);
...
2
votes
1answer
127 views
Evade polling when accessing Matlab from Python
I would like to access Matlab from Python (on Windows, remotely and via COM-interface). My goal is: Matlab is doing some work and permanently changes the value of a certain variable. I need to know ...
0
votes
1answer
131 views
Pyserial polling memory
import serial
ser = serial.Serial('COM5', baudrate=9600, parity=serial.PARITY_NONE, timeout=1)
print "connected to: " + ser.portstr
while ser.isOpen():
line = ser.readline().strip()
if ...
0
votes
1answer
433 views
Check if file is modified deleted or extended using python select.kqueue()
Hi I am having a hard time understanding how to use the BSD only python module classes select.kqueue and select.kevent to setup a watch for file write events.
I want to a python program to respond ...
3
votes
1answer
343 views
I can't understand polling/select in python
I'm doing some threaded asynchronous networking experiment in python, using UDP.
I'd like to understand polling and the select python module, I've never used them in C/C++.
What are those for ? I ...
2
votes
1answer
514 views
Linux eventfd's initial value and use in a pollable Lock
Question
eventfd() is a new system call available in Linux since 2.6.22. The call signature is
int eventfd(unsigned int initval, int flags);
I am making use of this call in constructing a new ...
1
vote
4answers
426 views
Python: Waiting for a file to reach a size limit in a CPU friendly manner
I am monitoring a file in Python and triggering an action when it reaches a certain size. Right now I am sleeping and polling but I'm sure there is a more elegant way to do this:
POLLING_PERIOD = 10
...
0
votes
2answers
448 views
Blocking vs. Non Blocking network IO in Python
I have some python code that was written by a developer before me. It sends UDP messages to nodes in a P2P network. I am writing a parallel version of that code. This code sends multiple parallel ...
0
votes
1answer
335 views
Polling a folder, best way to keep memory and speed unaffected?
I want to create a python script that polls a folder that a java server will fill with images when a user transfers them, however I want this script to be almost as invisible as possible in terms of ...
0
votes
1answer
365 views
From PHP and now to Python ( Based on project needs )
Basically I'm php web programmer, and I am now facing a difficulties on school project with ajax long polling (which has module with notification push). So after doing some research and read the ...
0
votes
2answers
126 views
Callback Functions across computers?
I'm writing a python server/client app. If I serialize a function on the client and pass it to the server, can the server use it as a callback? I'm assuming there must be something extra I'd have to ...
4
votes
1answer
931 views
How does polling a file for changes work?
The problem
I expected the script below to print at most one event and then stop (it's written only to illustrate the problem).
#!/usr/bin/env python
from select import poll, POLLIN
filename = ...
0
votes
2answers
76 views
Django Poll for new records
In ajax I am polling a django url to retrieve the latest records. I do not want to display any records I have retrieved previously and I only want to retrieve 1 record for each poll request.
What ...
0
votes
2answers
87 views
How can my desktop application be notified of a state change on a remote server?
I'm creating a desktop application that requires authorization from a remote server before performing certain actions locally.
What's the best way to have my desktop application notified when the ...
0
votes
1answer
1k views
Problem with polling sockets in python
After I begin the polling loop, all messages printed after the first iteration require me to press enter in the terminal for it to be displayed.
#!/usr/bin/python
import socket, select, os, pty, sys
...
4
votes
5answers
5k views
Using select/poll/kqueue/kevent to watch a directory for new files
In my app I need to watch a directory for new files. The amount of traffic is very large and there are going to be a minimum of hundreds of new files per second appearing. Currently I'm using a busy ...
26
votes
7answers
15k views
Python Comet Server
I am building a web application that has a real-time feed (similar to Facebook's newsfeed) that I want to update via a long-polling mechanism. I understand that with Python, my choices are pretty much ...
4
votes
2answers
1k views
Best way to poll a web service (eg, for a twitter app)
I need to poll a web service, in this case twitter's API, and I'm wondering what the conventional wisdom is on this topic. I'm not sure whether this is important, but I've always found feedback useful ...
