a = Analysis(['geoip.py', 'dbutils/geoipdb.py', 'dbutils/DBClass.py', 'commonutils.py', 'logutils.py'],
pathex=['/opt/blu/app/master'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='geoip',
debug=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=True )
以上代码是我的spec文件。我的任务是在spec文件中编写清理代码(即...,以清除执行pyinstaller时创建的文件,如构建路径中的文件夹和dist路径中的可执行文件以及临时文件)。
我知道pyinstaller中有一个干净的选项,可以通过以下代码实现:
pyinstaller --clean geoip.spec
但是我在哪里可以编写干净的代码?