python 在python中通过套接字发送消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 在python中通过套接字发送消息相关的知识,希望对你有一定的参考价值。

import socket
import time

s = socket.socket()         # Create a socket object
host = socket.gethostname() # Get local machine name
port = 12345                # Reserve a port for your service.
s.bind((host, port))        # Bind to the port

s.listen(5)                 # Now wait for client connection.
while True:
   c, addr = s.accept()     # Establish connection with client.
   print 'Got connection from', addr

   counter = 0

   while True:
      c.send('Message #{counter}'.format(counter=counter))
      counter += 1
      time.sleep(0.1)
      print(counter)

   c.close()

以上是关于python 在python中通过套接字发送消息的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 中通过套接字发送大量数据的正确方法是啥?

使用套接字在eclipse android程序中通过IP地址发送消息

在 C++ 中通过套接字发送图像

在python中通过调制解调器发送wav声音

在 C++ 中通过 tcp 套接字发送结构

在 c++ 中通过套接字(发送函数)发送图片,但不接收完整(Windows)!