Is there an easy way to distribute a Flask server as an executable?
问题 I'm building some simple editors with Backbone.js, and I'm hoping to be able to distribute them as apps for users to edit content in a mostly client-side way (i.e., I don't want users to have to futz with setting up stuff like MySQL or Apache). So I was imagining a scenario like: User downloads a .zip file In the resulting opened folder, the user clicks index.html That opens in a browser Backbone app starts, stores data in localStorage The user can then export to CSV. Believe it or not, that