如何使用Python-Zeroconf发送数据

How to send data using Python-Zeroconf

我看到一个tutorial on Python-Zeroconf.

教程展示了如何创建 Python-Zeroconf 侦听器,因此我知道如何接收数据。

下面是。

from zeroconf import ServiceBrowser, Zeroconf

class MyListener:

    def remove_service(self, zeroconf, type, name):
        print("Service %s removed" % (name,))

    def add_service(self, zeroconf, type, name):
        info = zeroconf.get_service_info(type, name)
        print("Service %s added, service info: %s" % (name, info))


zeroconf = Zeroconf()
listener = MyListener()
browser = ServiceBrowser(zeroconf, "_http._tcp.local.", listener)
try:
    input("Press enter to exit...\n\n")
finally:
    zeroconf.close()

但是好像没有写怎么发送数据。是否可以使用 Python-Zeroconf 发送数据?如何发送?

Zeroconf 是让客户端找到服务和连接到哪个端口,而不是实际的数据传输。 python 中有关于创建简单客户端和服务器的网上教程。 这是一个 Python socket programming.