我是python套接字编程的新手,我想知道是否有一个我可以使用的网络框架,一旦客户端连接就可以发出一个事件。例如,一旦客户端连接,就可以运行一些代码。这个简单我正在使用的代码
import socket # Import socket module
s = socket.socket() # Create a socket object
host = socket.gethostname() # Get local machine name
port = 7654 # Reserve a port for your service.
s.connect((host, port))
print s.recv(1024)
s.close # Close the socket when done
编辑:
找到异步http://docs.python.org/2/library/asyncore.html#module-asyncore