Skip to content

Instantly share code, notes, and snippets.

@Averroes
Created April 10, 2015 17:13
Show Gist options
  • Select an option

  • Save Averroes/e962d55764c8b605b2ca to your computer and use it in GitHub Desktop.

Select an option

Save Averroes/e962d55764c8b605b2ca to your computer and use it in GitHub Desktop.
event driven io explained
from socket import *
s = socket(AF_INET, SOCK_DGRAM)
s.sendto(b'', ('localhost', 14000))
print(s.recvfrom(128))
s.sendto(b'Hello', ('localhost', 15000))
print(s.recvfrom(128))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment