Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Configure PyInstaller for Python binary builds with spec files and bundling options.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -23% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -5% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 6% | 0% |
| case-21 | ✗→✓ | ▲ Improved | -29% | 0% |
| case-03 | ✓→✓ | = Same ✓ | -33% | 0% |
Configure PyInstaller for Python binary builds.
python# myapp.spec block_cipher = None a = Analysis( ['src/myapp/__main__.py'], pathex=[], binaries=[], datas=[('src/myapp/data', 'data')], hiddenimports=['click', 'rich'], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False, ) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) exe = EXE( pyz, a.scripts, a.binaries, a.zipfiles, a.datas, [], name='myapp', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, console=True, )
Other measured skills in the registry, with their headline benchmark lift.