7 ms·
Will chime in and mention aiohttp[1]. It's lightweight, fun, and the API is very user-friendly for those willing to work on a slightly lower level. I use it to
by sifer 7y ago
Will chime in and mention aiohttp[1]. It's lightweight, fun, and the API is very user-friendly for those willing to work on a slightly lower level. I use it to build speedy APIs, and coupled with a good ORM (peewee? [2]) it's pretty dope.
1. https://aiohttp.readthedocs.io/en/stable/ https://aiohttp.readthedocs.io/en/stable/
2. http://docs.peewee-orm.com/en/latest/ http://docs.peewee-orm.com/en/latest/
- enz 7y agoaiohttp is indeed neat. No WSGI (async-based). The API is clean and HTTP-level. Maybe comparable to Falcon in this regard.