hi guys wassup i found a interesting thing that i would like to share as a python programmer
the program is py2exe as the name suggests it converts python files to an exe standalone file here is the method
Create your setup script (setup.py)
py2exe extends Distutils
with a new "command". If you've installed third party Python modules
then there's a good chance you've seen at least one distutils command:
C:\Tutorial>python setup.py install
"install"
is a Distutils command that installs something (typically a Python
module or package). The details Distutils needs to do that installation
are contained in setup.py (and sometimes other associated files).
"py2exe"
is a new Distutils command that is added when you import py2exe. To use
py2exe you need to create a setup.py...