![]() |
Re: pyrudp
Have you seen http://pyraknet.slowchop.com/? It appears to do a similar thing.
On 30 January 2013 17:02, Jorge Alberto Diaz Orozco <jaorozco@estudiantes.uci.cu> wrote: > Iīve tried it but itīs not reliable. Datagrams can arive disorganisedor just not arive. > Some programmers said I most use TCP, but I need to use UDP. > thatīs why I need pyrudp, but I can not find it. > > On Jan 30, 2013, at 8:12 AM, Jorge Alberto Diaz Orozco > > What about the native socket call to SOCK_DGRAM? > > Here is a simple example to read messages of a udp socket. > > import socket > UDP_IP = "127.0.0.1" > UDP_PORT = 5005 > > sock = socket.socket(socket.AF_INET, # Internet > socket.SOCK_DGRAM) # UDP > sock.bind((UDP_IP, UDP_PORT)) > > while True: > data, addr = sock.recvfrom(1024) # buffer size is 1024 bytes > print "received message:", data > -- > http://mail.python.org/mailman/listinfo/python-list -- Robert K. Day robert.day@merton.oxon.org |
| All times are GMT. The time now is 10:25 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.