Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #37950 > unrolled thread
| Started by | Rob Day <robert.day@merton.oxon.org> |
|---|---|
| First post | 2013-01-30 18:01 +0000 |
| Last post | 2013-01-30 18:01 +0000 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: pyrudp Rob Day <robert.day@merton.oxon.org> - 2013-01-30 18:01 +0000
| From | Rob Day <robert.day@merton.oxon.org> |
|---|---|
| Date | 2013-01-30 18:01 +0000 |
| Subject | Re: pyrudp |
| Message-ID | <mailman.1221.1359568898.2939.python-list@python.org> |
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 disorganised or 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
Back to top | Article view | comp.lang.python
csiph-web