首页 > 代码库 > socket 简单的模板

socket 简单的模板

服务端:

#!/usr/bin/python

import socket

s=socket.socket()

host=‘10.67.15.96‘

port=889

s.bind((host,port))

s.listen(5)

while True:

    c,addr=s.accept()

    print ‘++++++‘

    c.send(‘server‘)

    b=c.recv(1024)

    print b

    c.close()



客户端:

#!/usr/bin/python

import socket

s=socket.socket()

host=‘10.67.15.96‘

port=889

s.connect((host,port))

a=s.recv(1024)

if a:

    b=open(‘/home/yanchao/test‘,‘a‘)

    s.send(‘client‘)

    b.write(‘%s\n‘%a)


本文出自 “expect批量同步数据” 博客,请务必保留此出处http://4249964.blog.51cto.com/4239964/1437891