Hacker News new | ask | show | jobs
by abuckenheimer 2983 days ago
+1 been using sanic for a couple years, it's an awesome easily grokable micro framework. Sanic is flask-like in a lot of places where a quick perusal of the quart code makes it look like they go an extra mile on the flask scale, but maybe take up some complexity in that process. Up to the consumer on which trade off they pick. I tend to think that since there is no WSGI equivalent for asyncio (something people are thinking about https://github.com/channelcat/sanic/issues/761) you want a slightly different model than flask anyway.
1 comments

there is ASGI https://github.com/django/asgiref/blob/master/specs/asgi.rst

but i am not sure how broadly as a common spec this has been accepted.