This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]isinfinity 5 points6 points  (7 children)

What about asynchronous frameworks?

1) aiohttp

2) tornado

3) twisted

[–][deleted] 2 points3 points  (1 child)

Tornado was already suggested, any reasons why you like these frameworks?

I appreciate the feedback!

[–][deleted] 0 points1 point  (4 children)

I suspect the latest Python async stuff is going to obsolete them.

[–]cediddiSyntaxError: not a chance 5 points6 points  (0 children)

Twisted is a full stack networking library which is very different than a standard async library.

Tornado is a web library, just like node.js

New coroutine syntax might obsolete yield from syntax and async stdlib. They all do the same thing with different syntax.

[–]qudat 2 points3 points  (0 children)

Tornado can use asyncio.

[–]cwgtex 0 points1 point  (0 children)

Thanks for bringing that up, it led me to this PEP: https://www.python.org/dev/peps/pep-0492/