socket-简单实现
Posted fmgao-technology
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了socket-简单实现相关的知识,希望对你有一定的参考价值。
server--------------
#!/usr/bin/env python
# encoding: utf-8
# Date: 2018/6/7
from socket import *
server = socket(AF_INET, SOCK_DGRAM)
server.bind((‘127.0.0.1‘, 8080))
res1 = server.recvfrom(1024)
print(‘第一次:‘, res1)
res2 = server.recvfrom(1024)
print(‘第二次:‘, res2)
server.close()
client---------------------
#!/usr/bin/env python
# encoding: utf-8
# Date: 2018/6/7
from socket import *
client = socket(AF_INET, SOCK_DGRAM)
client.sendto(b‘hello‘, (‘127.0.0.1‘, 8080))
client.sendto(b‘world‘, (‘127.0.0.1‘, 8080))
client.close()
以上是关于socket-简单实现的主要内容,如果未能解决你的问题,请参考以下文章