views:

251

answers:

1

Hi at all, I need to create a simple browser chat using a Comet webserver.

So I have found Twisted and Tornado.

What is the difference ?

+2  A: 

Tornado is a web server. Twisted is an event-based framework that can handle many more protocols, as well as non-network services such as GUIs.

Ignacio Vazquez-Abrams