ref: 5d5116d9f3e1d727ce9c53e99efee43e28d5ebdb
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)