The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
55 views

Python chat with asynchat getting session data

I have this code from here: #!/usr/bin/python from asyncore import dispatcher from asynchat import async_chat import socket, asyncore PORT = 55555 NAME = 'ChatLine' class ChatSession(async_chat): ...
0
votes
1answer
43 views

HTTP Class that extends asyncore.dispatcher

Is there "standard" or well known class that do HTTP Client using asyncore.dispatcher ? I can do one, but I prefer not to invent the wheel again :)
0
votes
1answer
45 views

asynchronous DNS resolver using asyncore

Is there any way to make DNS resolving using Python with asyncore? I can not install adns and I do not like to use gevent library. (for URL downloading gevent give me slow performance than ...
0
votes
1answer
153 views

Python - Asyncore (client) socket - Can not determaine connection status

For some reason, self.connected of the asyncore.dispatcher class doesn't consider my socket to be connected on the client side. The server side sees the socket as connected and treats it as such, but ...
1
vote
0answers
34 views

Python client connecting to large number of servers

How would one go around to establish and maintain a large number of TCP connections to several remote servers? When I say large think c10k large. It would be a sort of massively connected P2P app, ...
0
votes
2answers
216 views

Efficient python chat server [closed]

I am now writing a unicast chat server model, the flow will be as follows: Sender send out message to the chat server, in the message the server also specify the message recipient id The chat server ...
0
votes
0answers
79 views

How can I use asyncore with the multiprocessing IPC module in Python 3?

I'm trying to utilise the Client/Server architecture of the multiprocessing module to facilitate communication between my Python scripts. I want to be able to implement a separate connection listener ...
0
votes
1answer
177 views

asyncore server: Request resulting in “socket.error'>:[Errno 32] Broken pipe)”

I'm writing an asyncore server which fetches info from another module in same process and writes it back to client. The info basically is a dictionary where for each key we have a queue of messages. ...
0
votes
2answers
156 views

Asyncore TCP server, I not understand how connection close for client socket

I not understand how connection close for client socket. import asyncore import socket class TCPClientHandle(asyncore.dispatcher): def __init__(self, sock, server): ...
0
votes
1answer
163 views

Java NIO server and Python asyncore client

I have the following java NIO server and further below a python asyncore client. The server prints "Accepted...\n", however, the client's handle_connect is never called. Could someone help me with ...
0
votes
3answers
162 views

asyncore.loop doesn't terminate when there are no more connections

I am following some example code to use asyncore here, only having set a timeout value for asyncore.loop as in the following full example: import smtpd import asyncore class ...
1
vote
3answers
225 views

How to handle asyncore within a class in python, without blocking anything?

I need to create a class that can receive and store SMTP messages, i.e. E-Mails. To do so, I am using asyncore according to an example posted here. However, asyncore.loop() is blocking so I cannot do ...
1
vote
1answer
121 views

Is there a python implementation of websocket server over asyncore

Is there a python implementation of websocket server over asyncore which supports all versions of Hixie and HyBi? I have looked at results from Google like https://gist.github.com/719381, ...
1
vote
1answer
131 views

Building asynchronous socket tutorial: how do I connect to listening socket in python?

python 2.6 Windows 7 I am trying to put together an as simple as possible tutorial of how to write cooperative multitasking programs. As an example application I've written a chat server with ...
1
vote
0answers
151 views

close socket from client so that asyncore server detects it

I am building a chat server client system. a socket is created at the client side to connect to the server listening at a port. The problem is when I try to close the socket from the client side, the ...
0
votes
1answer
129 views

Timeout for idle connection

I am using asyncore and asynchat modules to build a SMTP server (I used code from smtpd lib to build the SMTP server) but I have a problem with connection timeouts. When I open telnet connection to ...
1
vote
1answer
125 views

How to make a dynamic port forwarding on python?

I modified the code (found here) a bit (added class AsyncEventLoop) import socket,asyncore import threading class forwarder(asyncore.dispatcher): def __init__(self, ip, port, ...
1
vote
1answer
396 views

SocketServer ThreadingTCPServer & Asyncore Dispatcher

I want to add a timeout to individual connections within my request handler for a server using the SocketServer module. Let me start by saying this is the first time I'm attempting to do network ...
0
votes
0answers
170 views

Asyncore Poll in Windows - Python

I need to use poll() insted of select() in my AsyncServer due to some "bad file name descriptor" errors during high load to the server code. This is what i came up in linux (which satisfy my needs): ...
2
votes
0answers
144 views

Detecting socket close with Python's asyncore and smtpd

Python newbie here. I'm using asyncore and smtpd to write an email server. Everything seems to work except that I can't figure out how to detect when/if the connecting client closes the socket. Also, ...
2
votes
0answers
198 views

asyncore socket doesn't close properly

I've written (mostly copied) a very simple python script to function as a Caller ID addon for xbmc. It works as expected except for closing the socket. I've confirmed that xbmc.abortRequested (a ...
0
votes
0answers
211 views

Making a client to connect asyncore server

I have a chat server hosted (using asyncore and asynchat) and want to connect it. It works fine when I use a client like telnet via the command line, the server basically handles any line sent to it. ...
0
votes
1answer
222 views

Flask/mongodb webapp inconsistent test

I have a Flask integration test backed by a 1-node mongodb that randomly fails: pytest/test_webapi.py:59: in test_register_test > assert res.status_code == 302 E assert ...
0
votes
2answers
435 views

python asyncore keep track of clients

I'm writing a simple socket server and I want to keep track of the clients state (authentication and stuff). Every time handle_read() is called I don't know anything about that particular client. It ...
2
votes
2answers
551 views

How to quit an asyncore dispatcher from a handler?

I couldn't find this in the docs, but how am I meant to break out of the asyncore.loop() without using signals?
1
vote
1answer
272 views

Python/perl print server; writing print job to file [solved]

I'm working on trying to get a print server running using this: http://newcenturycomputers.net/projects/rawprintserver.html I've modified spooler.py to write to a file and everything is working OK ...
0
votes
1answer
186 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 ...
1
vote
2answers
156 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 ...
2
votes
2answers
420 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 minimize timeout, is ...
3
votes
1answer
511 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 : ...
1
vote
1answer
476 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
398 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
478 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 ...
1
vote
1answer
180 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 ...
5
votes
1answer
935 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 ...
1
vote
1answer
1k 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 = "" ...
0
votes
0answers
57 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 ...
1
vote
2answers
392 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
410 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 ...
0
votes
1answer
489 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 ...
2
votes
1answer
355 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
1k 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
1answer
1k 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 ...
2
votes
4answers
3k 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
409 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 ...
9
votes
1answer
682 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 ...
1
vote
2answers
286 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 ...
10
votes
3answers
3k 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 ...
1
vote
2answers
1k 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()?
1
vote
1answer
250 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 2