🌜 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.
🌜 Milkman Riot
Interesting. Do you have experience with Flask apps as well?