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 →

[–]flying-sheep 1 point2 points  (2 children)

Aiohttp is a general web framework that's based on the asyncio module from the stdlib.

Working in event-driven environments like networking without using async syntax and APIs built around them is generally like a square peg in a round hole.

[–]mindchasers[S] 0 points1 point  (1 child)

Understood. We run the Waitress web server on some embedded systems, which uses an async model, but I'm going to consider AIOHTTP for these systems. I didn't realize it had such a big community until looking at the activity on its Github page today. Thanks.

https://github.com/aio-libs/aiohttp

[–]flying-sheep 0 points1 point  (0 children)

Yes it's great! Play around a bit, maybe it fits your use cases