Python web framework for I/O intensive page -
i have i/o intensive task (it crawls webpages). want make task available via web api , built javascript+html interface on top of it. , want in python, since have set of python scripts implementing task.
now i'm looking python web framework this. what web framework can recommend i/o intensive web page?
some more details:
- i worked flask , liked it
- i don't need user management, need sessions
- i want build actual ui angular/ember
since it's web crawling, i'd go scrapy crawling tool , twisted event-driven networking engine/web-framework. scrapy
built on top of twisted, set might choice you.
also, take @ tornado web framework using non-blocking i/o.
hope helps.
Comments
Post a Comment