File: unixclient.py

package info (click to toggle)
python1.5 1.5.2-23.3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 13,244 kB
  • ctags: 36,908
  • sloc: ansic: 97,127; python: 90,600; makefile: 2,676; lisp: 2,356; sh: 808
file content (10 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
# Echo client demo using Unix sockets
# Piet van Oostrum
from socket import *
FILE = 'blabla'
s = socket(AF_UNIX, SOCK_STREAM)
s.connect(FILE)
s.send('Hello, world')
data = s.recv(1024)
s.close()
print 'Received', `data`