Is there a way to make the app with flask into an executable file and share it?

Asked 2 years ago, Updated 2 years ago, 44 views

Is there a way to make it executable right away by sending only the file every day?

flask

2022-09-20 14:53

1 Answers

What does Flask do? Web framework. When people go to the website, they just decide what Python script to run, run it, and return the result. But now the result is usually text in text/html format.

Now I'll give you an answer about what you want. Should I send Flask if I want to email someone with the features I implemented with Flask? No. Send only the kernel Python script that Flask runs. If you need to get this or that input value in doing that, it's a secondary problem that you have to use input() from there.

Create executable: https://hongku.tistory.com/338


2022-09-20 14:53

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.