Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
367 views

asyncore callbacks launching threads… ok to do?

I'm unfamiliar with asyncore, and have very limited knowledge of asynchronous programming except for a few intro to twisted tutorials. I am most familiar with threads and use them in all my apps. One ...
5
votes
2answers
729 views

Which Python async library would be best suited for my code? Asyncore? Twisted?

I have a program I'm working on that will be reading from two 'network sources' simultaneously. I wanted to try out an asynchronous approach rather than use threading. This has lead me to wonder which ...
3
votes
3answers
398 views

Python asyncore & dbus

Is it possible to integrate asyncore with dbus through the same main loop? Usually, DBus integration is done through glib main loop: is it possible to have either asyncore integrate this main loop ...
2
votes
1answer
91 views

asyncore python hangs

I try to do simple async http client with asyncore: This code works fine and output is (fast enought): www.gmail.com : recv http code: 301 www.yandex.ru : recv http code: 200 www.python.org : ...
2
votes
1answer
220 views

Asyncore loop and raw_input problem

I'm trying to learn asyncore module. So I decided to develop a chat program. I have to listen the network and broadcast udp packages same time. But problem is while user typing a message, user cannot ...
2
votes
1answer
198 views

Two-way Socket I/O with asyncore or alternative in Python

Am working on the back-end of Django web app that also has to do socket I/O with sensor devices in the field via GPRS using TCP communication. I'd managed to succeed in obtaining data from the ...
2
votes
2answers
350 views

Problems with python asyncore working with AF_UNIX sockets

I have some problems using asyncore with AF_UNIX sockets. This code import asyncore, socket, os class testselect(asyncore.dispatcher): path = '/tmp/mysocket' def __init__(self): ...
1
vote
2answers
43 views

pyftpdlib slow .read on file blocks entire mainloop

Helllo, I am using a custom AbstractFS on pyftpdlib that maps files on a HTTP server to FTP. This files are returned by my implementation of open (of AbstractFS) which returns a httplib.HTTPResponse ...
1
vote
1answer
72 views

python networking: asynchat handshake

I am using python asynchat to implement a network protocol. At connection time I need to send a command and the server answer with a session. My main problem is that I need to wait until I get the ...
1
vote
1answer
55 views

Handle SimpleXMLRPCServer calls and Asyncore.dispatchers events from the same event-loop

How can I handle Asyncore.dispatcher(s) and SimpleXMLRPCServer events from the same event-loop? P.S. I already know that some of you might recommend Twisted for this, but the problem with Twisted is ...
1
vote
1answer
253 views

Python's asyncore client to send periodic data to server

I need to connect to a server (e.g. smpp server) and send periodic data every 2 seconds, here's the code: import asyncore, socket, threading, time class SClient(asyncore.dispatcher): buffer = "" ...
1
vote
2answers
117 views

Using Python asyncore for load / stress testing a website

Hopefully someone will be able to help out with this. Short version: I'm looking to build my own website stress tester in Python. Why? Because I feel like it :) I'm not looking for a pre-built ...
1
vote
1answer
126 views

python asynchat: how to store information on individual connections, and how to know when a client disconnects

For fun, I'm writing a minimal IRC server with asynchat. I'm trying to clear up a few fundamentals (my specific questions follow the code). I've decided not to use anything in Twisted just so I can ...
1
vote
1answer
326 views

Need help creating a TCP relay between two sockets

I have the following situation: SomeServer(S) <-> (C)MyApp(S) <-> (C)User (S) represents a server socket (C) represents a client socket Essentially, MyApp initiates communication with ...
1
vote
4answers
345 views

Asynchronous HTTP calls in Python

I have a need for a callback kind of functionality in Python where I am sending a request to a webservice multiple times, with a change in the parameter each time. I want these requests to happen ...
1
vote
1answer
204 views

Python client socket event handling like that found in Adobe ActionScript

I'm porting some ActionScript code to Python and I'm struggling with some sort of event dispatcher implementation similar to that available in Flash (flash.events.EventDispatcher). I need to create a ...
1
vote
1answer
135 views

In asyncore how can i send data to all or some of the clients?

I'm building a little MMORPG and im trying to use asyncore rather then threading. 1) How would i send data to certain clients, because in threading a saved each clients socket and current in a ...
1
vote
1answer
275 views

Python asyncore with very low timeout

I have written a program that communicates with many servers at once using the asyncore module. For the most part I am just responding to data received from the servers, but occasionally I need to ...
1
vote
1answer
223 views

Reading fixed amount of bytes from socket with python asyncore

I use asyncore to communicate with remote servers using "length:message"-type protocol. Can someone recommend me a way to read exact amount of bytes from socket? I was trying to use handle_read to ...
1
vote
1answer
242 views

Building an SNMP Request-Response service with Python Asyncore

I have a 3rd-party protocol module (SNMP) that is built on top of asyncore. The asyncore interface is used to process response messages. What is the proper technique to design a client that generate ...
1
vote
1answer
374 views

Python asyncore vs plain old C

i'm stress testing 2 different projects: one is proxsmtpd - smtp proxy written in C And the other one, smtp_proxy.py, which i developed under 1 hour, with use of asyncore and smtpd python modules. I ...
1
vote
2answers
447 views

Asyncore not working properly with Tkinter GUI

At this point I'm still a noob when it comes to GUI and network programming so I'm hoping this will be a very simple fix. I've got a very basic understanding of the tkinter and asyncore modules having ...
1
vote
2answers
682 views

Reading socket buffer using asyncore

I'm new to Python (I have been programming in Java for multiple years now though), and I am working on a simple socket-based networking application (just for fun). The idea is that my code connects to ...
1
vote
1answer
1k views

Python, Asyncore and forks

Just for starters, I used Twisted and SocketServer with both ForkMixIn, ThreadMixIn and tried the "thread-pool" recepies. However, I wanted to make something particular work in Python. Alittle ...
0
votes
1answer
39 views

Asynchronous Server Python not calling handle_accept or any other handle methods

I have been trying to make a simple server that me and my friend will be able to play a game like go fish or another simple card game on. I am just learning how to use the asyncore class and I am ...
0
votes
0answers
62 views

asyncore timeout

Simple async http client, hangs on long time with not available sites. For example on site www.evtur.ru it waits for a long time, ten minutes or more. I can't find way how to minimise timeout, is it ...
0
votes
1answer
113 views

Python asyncore: “filedescriptor out of range in select()”

I have some python script with more than 3k outgoing socket connections, based on asyncore lib. I can't use select(..) due to connections limit (1024), but poll(..) not working properly too: ...
0
votes
0answers
88 views

Python asyncore - multiple SMPP PDU's in one TCP packet

I need to create an asynchronous SMPP client using Python. So I found asyncore module for implementing async clients and wrote such a code: #!/usr/bin/env python # -*- coding: utf-8 -*- import ...
0
votes
0answers
41 views

Can I safely call methods that change internals on a running thread instance in Python?

Maybe the question is a bit weird, so let me describe my problem. I'm creating a program which will perform several remote operations. These remote operations will be performed over a SSH tunnel that ...
0
votes
1answer
89 views

python asynchat state

I've just started working with the basics of python socket networking. As an exercise in understanding, I've been trying to hash out a basic server that will ask it's client for a file type, and upon ...
0
votes
2answers
165 views

How to create a glib.Source from Python?

I want to integrate some asyncore.dispatcher instances into GLib's default main context. I figure I can create a custom GSource that's able to detect event readiness on the various sockets in ...
0
votes
1answer
342 views

python asyncore connectivity

is there a way to check connection is established in asyncore? once asyncore.loop() is called, how can I disconnect the communication between server? can i just simply call close()?
0
votes
1answer
814 views

QObject (QPlainTextEdit) & Multithreading issues

Im currently trying to learn Networking with Python asyncore and pyqt4. I coded a small server, which basically listens on some port, and resends all messages it recieves to the sender. Since both ...
0
votes
1answer
324 views

asyncore not running handle_read

I'm trying to just make a simple asyncore example where one socket is the sender and one is the receiver. For some reason, the handle_read() on the receiver is never called so I never get the 'test' ...
0
votes
1answer
84 views

Starting an INDIVIDUAL instance of a subclass from asynchat

So the situation I have is that I have loaded more than one class that I've made that subclasses from asynchat, but I only want one of them to run. Of course, this doesn't work out when I call ...