Twisted Multiple Protocols

I want to learn how to distort the project I'm working on. The project will require the server to respond to HTTP requests, as well as other protocols over a TCP connection. Is a twisted way to work with multiple protocols simultaneously? I want to use Twisted Web to help with HTTP, but at the same time I need to respond to TCP connections through other ports.

+4
source share
1 answer

Of course yes. Twisted is a really good choice for those needs where multiple protocols need to work together.

Take a look at question for great tutorial links.

+3
source

All Articles