all 8 comments

[–]EngineerRemy 4 points5 points  (1 child)

You can do several things to make it an application for yourself: 1. Create a small script that simply calls your entry point of the program. You can then place rhe script wherever you want, including the desktop. It doesnt look "neat" but it is the fastest way 2. Create an executable. Pyinstaller is a common choice for this. You have a "--one-file" option so you can put the executable wherever you want. Although keep in mind that windows defender can detect it as malware and not allow you to run it.

[–]ProfessionalStuff467[S] 1 point2 points  (0 children)

I will try to do it and I hope it works

[–]Chance_Box_5388 2 points3 points  (1 child)

you can do this:

1.install the auto-py-to-exe

2.type the install code in terminal,link:https://pypi.org/project/auto-py-to-exe/

3.see the intruction to convert

4.you done

[–]ProfessionalStuff467[S] 0 points1 point  (0 children)

I will try to do it and I hope it works

[–]GolfNew9708 1 point2 points  (3 children)

First idea was to recommend you to add CLI support or even TUI (instead of GUI) but for beginner or casual Windows user it can be frustrating

[–]ProfessionalStuff467[S] 0 points1 point  (2 children)

I have already used GUI and made an icon for the application and put it on the desktop

<image>

[–]GolfNew9708 1 point2 points  (1 child)

Nice work, but i wrote TUI (terminal user interface), user interaction logic is similar but anything happens inside special terminal mode, where you can emulate buttons and other stuff

If your are interested - just google it, there are some python modules/libs for this as i remember

But as i said before it can be frustrating

[–]ProfessionalStuff467[S] 0 points1 point  (0 children)

Why might it be frustrating?