Live data from Hacker News

Waiting in Asyncio

hynek.me

1–10 of 31 posts

Re: Waiting in Asyncio

#3
We've been using Twisted at work for over a decade. We are finally completing our upgrade to python3 after much effort and pain. That means we are starting to look into the native async functions in python3.

What I realized the other day is that Twisted treats everything like an asyncio Task. That seems to make most of the more confusing gotchas just disappear. I suppose it's a matter of what you're used to though.

Re: Waiting in Asyncio

#4
post #2

All these subtleties and gotchas signify, to me, a shit implementation and a fragmented interface. The exact opposite of the Zen of python.

Can you give a practical example of a library or python subsystem that lives up to the “Zen of python” you are referring to?

Re: Waiting in Asyncio

#8
post #4
post #2

All these subtleties and gotchas signify, to me, a shit implementation and a fragmented interface. The exact opposite of the Zen of python.

Can you give a practical example of a library or python subsystem that lives up to the “Zen of python” you are referring to?

[deleted]

Re: Waiting in Asyncio

#9
post #4
post #2

All these subtleties and gotchas signify, to me, a shit implementation and a fragmented interface. The exact opposite of the Zen of python.

Can you give a practical example of a library or python subsystem that lives up to the “Zen of python” you are referring to?

There are lots. `requests` is the most famous.
Post reply on HN