Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建一个实时客户端-服务器应用程序(如 Dropbox)。
客户端应用程序应该监听一个数据通道。
我可以用python做到吗?
python 中有哪些解决方案、技术、模块可以完成这项任务?
是的,你可以用 Python 做到这一点。如果你也喜欢的话,你可以使用 PHP、Bash、JavaScript、Ruby、C、C++、C#、Java、Haskell、Go、Assembler、Perl、Pascal、Oberon、Prolog、Lisp 或 Caml 来实现。
大多数套接字接口属于以下两类之一:
阻塞接口
事件接口
如果不知道您的应用程序做了什么,就无法知道哪个适合您的应用程序。