Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #68207
| From | Sturla Molden <sturla.molden@gmail.com> |
|---|---|
| Subject | Re: which async framework? |
| Date | 2014-03-11 10:17 +0000 |
| References | <531E22DF.7030709@simplistix.co.uk> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.8039.1394533075.18130.python-list@python.org> (permalink) |
Chris Withers <chris@simplistix.co.uk> wrote:
> Hi All,
>
> I see python now has a plethora of async frameworks and I need to try
> and pick one to use from:
>
> - asyncio/tulip
> - tornado
> - twisted
Looking at Tornado's examples on the web I find this:
tornado.ioloop.IOLoop.instance().start()
This single line of code says more than thousand words. But it boils down
to:
(1) This was written by some Java guys.
(2) Someone used Python to write Java.
And that's all I need to know about Tornado.
Sturla
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Re: which async framework? Sturla Molden <sturla.molden@gmail.com> - 2014-03-11 10:17 +0000
Re: which async framework? Marko Rauhamaa <marko@pacujo.net> - 2014-03-11 12:51 +0200
Re: which async framework? Sturla Molden <sturla.molden@gmail.com> - 2014-03-11 11:18 +0000
csiph-web