lightweight event loop
Project description
simple event loop
simple eventloop
Examples
import sys
import sevent
loop = sevent.instance()
def on_connect(s):
print 'on_connect'
s.write('GET / HTTP/1.0\r\nHost: www.google.com\r\nConnection: Close\r\n\r\n')
def on_data(s, data):
print 'on_data'
print str(data)
def on_end(s):
print 'on_end'
def on_close(s):
print 'on_close'
loop.stop()
def on_error(s, e):
print 'on_error'
print e
s = sevent.tcp.Socket()
s.on('connect', on_connect)
s.on('data', on_data)
s.on('end', on_end)
s.on('close', on_close)
s.on('error', on_error)
s.connect(('www.google.com', 80))
loop.start()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sevent-0.0.7.tar.gz
(19.7 kB
view hashes)