mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # 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`
 | 
