Python 스크립트를 Exe 로 컴파일하여 배포할때,
첨부 py2exe를 설치한다.
(※ exe파일의 안전성을 위해서 확장자를 "ex_" 변경하여 두었다. ==> exe로 재 변경하여 사용할 것)
아래는 스크립트를 컴파일하는 make와 같은 역할을 스크립트 이다.
from distutils.core import setup
import py2exe
options = {
"bundle_files": 1, # create singlefile exe
"compressed" : 1, # compress the library archive
"optimize" : 2, # do optimize
}
setup(
console = ["url_list_check.py"], # py file to create exe
options = {"py2exe" : options},
zipfile = None # append zip-archive to the executable
)
#setup(
# windows = ["url_list_check.py"],
# )
[Python] 파일 해쉬 (hash) 및 Strings 기능 (0) | 2020.03.10 |
---|---|
[Python] 딕셔너리를 데이터 프레임으로 (Dict to DataFrame) (0) | 2020.03.10 |
Python Numpy 추천 문서 및 유의점 (0) | 2020.03.09 |
피보나치(Fibonacci) 수열을 구현하는 7가지 방법 - 파이썬(Python) 피보나치 구현 7선 (0) | 2018.03.03 |
[파이썬-Python] Numpy는 왜 필요할까? (0) | 2018.03.03 |
댓글 영역