ref: ac4840116ef15e2fc65d0e68f7e16d3a8a1aa2f8
dir: /sys/src/cmd/python/Demo/sockets/unixclient.py/
# Echo client demo using Unix sockets
# Piet van Oostrum
from socket import *
FILE = 'unix-socket'
s = socket(AF_UNIX, SOCK_STREAM)
s.connect(FILE)
s.send('Hello, world')
data = s.recv(1024)
s.close()
print 'Received', repr(data)