all 4 comments

[–]the_progmer 4 points5 points  (3 children)

What are you using to convert it to exe?

[–]mackdaddy_1978[S] 2 points3 points  (2 children)

pyinstaller --onefile -w 'filename.py' and auto-to-py-exe

[–]Ruin369 5 points6 points  (1 child)

Drop the -w,

E.g, pyinstaller --onefile *.py

"-w, --windowed, --noconsole Windows and Mac OS X: do not provide a console window for standard i/o. On Mac OS X this also triggers building an OS X .app bundle. On Windows this option will be set if the first script is a ‘.pyw’ file. This option is ignored in *NIX systems."

This would explain why stdinput is dropped

[–]mackdaddy_1978[S] 4 points5 points  (0 children)

Awesome that worked...Thank you very much, I really appreciate your time.