🌜 Milkman Riot flask or falcon? I know flask to some extent but I think what appeals to me about it in small apps falls apart in larger apps. I'm planning to try out falcon for the next little project. curious on opinions
🦿 Lucian Marin Subreply is built with Falcon using app = API(media_type=MEDIA_HTML) to initialize the app. API and MEDIA_HTML are imported from falcon library. I like the provided router and the fact you can design around HTTP methods: GET, POST, etc.
3y, 35w 2 replies
🌜 Milkman Riot Interesting. Do you have experience with Flask apps as well?
3y, 35w 1 reply
🦿 Lucian Marin Artificial Feed, the news aggregator I'm working on was initially created in Flask. You can start your first Python web app in Flask. But all benchmarks say that Flask is slow: fgimian.github.io/.... Sub was previously powered by Django, but I rewrote both of them in Falcon. I'm still using Django as a library for its ORM and management commands.
3y, 34w reply
Login or register your account to reply