Own network protocol

Steven D'Aprano steve+comp.lang.python at pearwood.info
Sat Dec 27 05:13:58 EST 2014


pfranken85 at gmail.com wrote:

> What kind of protocol do you recommend for this? UDP or TCP? Do you
> recommend the use of frameworks such as twisted?

I don't recommend something as low-level as inventing your own protocol, or
as heavy-weight as Twisted.

Have you considered a remote-procedure call library like rpyc or pyro?

http://rpyc.readthedocs.org/
https://pypi.python.org/pypi/Pyro4


-- 
Steven




More information about the Python-list mailing list