mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# 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(b'Hello, world')
 | 
						|
data = s.recv(1024)
 | 
						|
s.close()
 | 
						|
print('Received', repr(data))
 |