Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save Averroes/c44b15e23d28b8dfd148 to your computer and use it in GitHub Desktop.
event driven io explained
from socket import socket, AF_INET, SOCK_STREAM
s = socket(AF_INET, SOCK_STREAM)
s.connect(('localhost', 16000))
s.send(b'Hello\n')
print('Got:', s.recv(8192))
s.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment