Top "Asyncore" questions

Python module providing basic infrastructure for writing asynchronous socket service clients and servers

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 …

python asynchronous asyncore
QObject (QPlainTextEdit) & Multithreading issues

Im currently trying to learn Networking with Python asyncore and pyqt4. I coded a small server, which basically listens on …

python multithreading qt4 pyqt4 asyncore
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 …

python asynchronous twisted asyncore
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 …

python multithreading smtp asyncore
asyncore.dispatcher in python: when are the handle_closed and handle_read executed?

There are two files: server.py and client.py, both written with the help of asyncore.dispatcher Server.py import …

python sockets asyncore