Python:简单的PC到PC通信

时间:2012-12-30 16:28:36

标签: python string tcp udp

我有兴趣制作一个将字符串从一台计算机传输到另一台计算机的应用程序。我对TCP或UDP通信感兴趣。我已经实现了UDP,但它似乎能够发送多达512字节的数据/数据包。在两端实现数据包拆分和连接应该是一个痛苦的屁股,所以我想知道是否有一个库或类似的东西允许我传输一个长字符串(希望不超过10-20 KB,通常在1- 2KB)直接到另一台电脑。我不关心加密通信,因为没有发送/检索敏感数据。我可以使用任何建议吗?

这就是我现在想的:

import easylib
def receivedData(text):
     print(text)
sendData("Hello world! Oh my gosh, this is a pretty long string. Good to know I can send it without any problems.")

提前谢谢。

1 个答案:

答案 0 :(得分:3)

Python套接字服务器的

Nice small example。 您还可以使用更高级别的协议like XMLRPC