非常に良いです。たとえば、スクリプトで exe 単一のコードを作成できるかどうかは誰でも知っています。
1 つのファイル (hello.py):
print('hello word')
def exit():
print('good bye')
2 つのファイル (setup.py):
from distutils.core import setup
import py2exe
import sys
import hello
if len(sys.argv) == 1:
sys.argv.append("py2exe")
sys.argv.append("-q")
options = {
#"bundle_files": 1,
"dll_excludes": ["w9xpopen.exe"] # we don't need this
}
setup(name = "python",
description = "aplicacion python",
version = "1.0",
console = [
{
"script":"hello.exit()",
#"icon_resources": [(0, "res_python.ico")]
}
],
options = {"py2exe": options},
zipfile = None,
)
より良い説明のために、同じファイルからexeを作成します、ありがとう。