如何将Pyc文件转换为Exe



我需要混淆我的Python代码,我知道最好的方法是将其转换为C文件,但我做不到。

根据这篇文章,虽然不是100%有效,但我可以"混淆";代码使用:

python -OO -m py_compile <filename.py>

这样做会生成一个PYC文件,我试图使用Pyinstaller将其转换为Exe

pyinstaller --onefile filename.pyc

但它不起作用,我如何将模糊的Pyc文件转换为Exe?有没有其他方法可以混淆代码,然后将其转换为Exe,而不将其转换成C语言?

从如何用PyArmor:混淆Python脚本

安装PyArmor:

pip install pyarmor

用PyArmor:混淆script.py

pyarmor obfuscate script.py

原始script.py文件:

def main():
print("Hello World")

if __name__ == '__main__':
main()

混淆后:

from pytransform import pyarmor_runtime
pyarmor_runtime()
__pyarmor__(__name__, __file__, b'x50x59x41x52x4dx4fx52x00x00x03x0ax00x6fx0dx0dx0ax09x33xe0x02x00x00x00x00x01x00x00x00x40x00x00x00xb2x17x00x00x00x00x00x18x4ax9dx70x63x25x3bxafx0ex31x3bx1ax3ax18x32xa5x92x00x00x00x00x00x00x00x00x86x7ex95xbdxc0x82x5fx72xa1xc3x6dx58x28xe2x51xd2xeex48xeex96x83x57x9axf9x45x75x6axe2x4dx35xbdxfbxf0xb4xbexf4xf3x5ax9ex4cx88xd7x42x83x60x12xa9xbbx4fxb3x18xb5x43x0fx1ex72xd1xdexd3xc1xdex6cx32x38x78x51xb0x25x1fx11x5dx64xd3xf2x81x68x3exe0x6dxc6xcfx6bx9ax27x92xadxeex97xbfxc6x58x2cx5dx7ax21xeex65xd8x0cxb0x59x04xb8x92x29x85x61x4cx61xe9xc1x0bx98x85xe3x41x45x34xf1xe8xe2x1axadx88x24xb9xcaxdcx02xbbx63x6dx63xcax66x32x9ax40x12x2axa6xf7x22xbexeax72xabx2cx2fx20xbcx77xaaxdbx07x9axf1xffx3ex8fxeaxa8xa5x7bxe8xa8x85x0cx8ex1axc4xb2x9bxc8x2dxcdxf6xa4xaex8fxcfx76xb7x56xb4xe2xcfxaaxd1xebxfdx29xedx77x09xc1xb2xc9xd3xcex97x60x59x22xa3xfax2cx6ex0axc1x61x87x39x96x7ex66xc9x79x86x42x1bxe4x93x83x59x42xd9x14xbax3ex03x08xafx0ax1dxadx91x86xf8x2fx5cx5ax1exd7x74x12x9ex08xf4x4exa0xb2x13x8cxcex00x97x1dx3dxa5x56xe3xe3x28x05x1dx0dx1dxc0x85x3bxfexadx81x51x6fx1ex81xdcx76xdbx5cx4bxa2xf6xe9xbbx11x12x47xcdx9fxb3x05x73xf8xecx36xd5xc9x29x54x8dx61xb4xaaxecx2cxfax13xdcxedxf9xe7x15x08xfaxcdx94x02x06x8ax43xfcxc2x2fxb4x75xebxe9xa5x85x45x99xe0xe8xb5x86x3cx54x5ex1fx08xaax19x3axe3x9exfdx0ex22xaaxe0x0bx52xaex1exd0xf6x52xd3x30x06xe0x2ex9bx50x90x76x96xbfxa2xe1x5ax3fx8dx2fxcbxcexabx4axa1x6ex89x91xccxa6x56xf1x65xd2xdcxa9xd9x80x6ex82x30x5ex6ex7dx82x13xfdxe6x5axb2xcdx4cxabxaax63x79x1dx20x8ax8exd1xeax58x05xa5xdcx93x65x64x74xa6x58x40x90xa8x7exd1x7fxcdx40xc1x39x0exf0xa6xd5x7fx00xffxd1x37x93x0cx10x18x18xe8xa1x15x42x4fx12x4cxccx9bx58x90x95x0exf3xc4x09x76x68x7dx77x6exd4xaex5cx5cx95x28x01x51x9bxebx08x04x6fx3cx48xb5x33x92xbfxaaxb0x88xcdx76x9fx2bx5ax7bxfexa2x27x92x56xedxe9xe2x4bx15x3fx47x51x82x1bx87x1excdx6bxfaxc8xb3xa9xcexd6x89x7cx98x90x95xdfx4cxadx4cx9fx3dx7bx27x44x53x32x5bx9cx5cxadx9bxb2x05x33xd9xdex54x03xb2x25xdcx5excdx53x3fx39xbbx1ax39x5bx13x18x49x38x0bx1dxd2x8bx78x6axa0x07x12x0fx44x71xa4xd5x38x29xe0x0ex6dxc5x72x15xe3xabx89x7cx37x1bxb5xb3x87x7cxd2x5dxdcxfcxe5x9dxe6xecx9exb1x39xe1x41x99x25xe8xb9xd2x92x54x24x31x4dx1bxa2xc9x91xdexacx2axa5x0dxb8x56x69x65x29xa1xf5xf8x0dx10x3fx26x8cx49x00x72x27xbbx4bx66x9fx8fx31x31x0exb5xa8x40xa9xe0xefx80x50xecxddxe9x79x10x7fx98x29xc5xe2x84x98xc7x4fxc0xe7x11xaexb9x2fxe0x39x91xcex8fxaaxb4x5ax0fx53x78x8fxbcx7ex0cx81x5dx32x0bxccx0bx9dxcdx8dx88xe2xffx62x23xbbx45x92xd2x6bxc0x2bx60xf7x63x94xbfx3cxc6x72x88x0fx92xbdxcexc2xcbx4cx8bx99x8dx8bx60xe6x38x7bx1axd7x67xbfx31x68x49x92x08xfbxddx89xdex05x88x7fx54x76xbax96x60x2bx07xf6xc3xaaxa9x71xf3x05xd8xb9x22xbcx6ex6exa7x81x8ax2ex9dx70xa0x16x90xc9x51x05x8fx5dxecxb8x7ex9bxefx32x35xcax98xd4x2fxdex0bxc7x00x6exb8x34xf3xedxa0x1bxfcx66x03x45x4dxa4xa4x31xe8x9dx23x38x08x26xcdx6dx33x1excbxd0x9axc4xcax4exbcx11x71xfcxdcxcbx5fx61x06xf9xfdxe6x22xdbx89xc0x43x14x63x36xc3x70x63xb7x57x15x73x0cxa6x5axc5x86x84x80x98xc9x1fx56x2bx2exf3x2dx35x70xedx4ex01xefx03x71x66xaax49xdfxccxa9x53x85x35x37x40x64x25x34xb8x27xb9x86x3ax50xfex40x4bxfex89x3exa5x5axc5xc0xb5x1dx2ax40xd1x3ax27x12x4ax98xcbxafxb4xdcxcexdexf7xf8x22xa9x98x38x32x58xf3xc3xe8x20x4dx48x2cxfex4fx24x79xd0x67xecxaax96xeexf8x5cx27xefx09x26xe1xd6x95x5fx20xfbxdax31x01x32xf1xb5x5dx8ex51x38x67x96x5bx0ex7dx55xe6xfaxc5x83x92x1ex64xb5x5exbbx2cxadxb3xb3x98x8dx15xc6xd3xe4x35xd8x43x40x45x28x30xf6x18x23x90x1fxafxa3xacxdaxddxf3x4axcax87x4bx36x17x45x42xadx93xedx5fx63xd3x3cx7ex64x7dxb8xfbx90x43xc1xc0x69x2ex9axdcx26xd5xa9x7fx03x44xe6xbax51x1fx89x75xe6xecx9axeex98x9bx55x94xf4xd0x73xafx5bx58x97xf5x3fxa9xf9x7ax26x16x89xd6x3ax54x9cx5cx43xafxdbx00x5ex30x59x69x6dx60x76x77xbdxe0x86x78xf3xf6xf9x32xfbx5dxf6xf2x09x3fx48xf6x51xdex1ax88x01x89x5ex02x9fx48xacx27xf2xf5x70x1fxd1x2cx3ax48x61xd3x22xe2xbfx85xb8x63x48x72xcex50x66x80x3ex44x8dxbcx15x02x2bx7ax1bx76xbdx46xcax4fxc6x5dx52x02x0cxabx67x8axe8x1bxddx14x93x4dx47xf6x03xc3xa1xd1x76x01xc6x88x06xa1x2exd2x5ex07xdex31x30x2fxe5xf1xf2xf6x25x88x86x38xdcx19x1fx55x19xadx93x06x43x48x89x67xbaxfax2dx19xfex90xb1xffx41xb4xf6x65x88xd3xb7x7ex96x02x7dxa4x83xc3x67xb6xedx66xa5x98x1fxcfxc2xa3xb4xc5x62xfbx14x7exdcx47x33x9dx5fx56x6dx29xd1xecxa3x05xe9x4fx97x00x20xeax0bxd1x9dx18x14x32x24xa5x3bxd1x7bx2cxfexc0xa3x07xc3x04xbdxb0x1bx24x4exbbxc5x30x43x2dxc0x59x30x0dx8fx2fxb0x4cx30xd3x81xe0x79xf9x0fx83x72x40xa9xbax31xd2xa0x86x8ex89xffx60x5dxecx8axf7x76xe1x14x33x9bx6ax12xb6xc2xb7xc1xd2x49xd0xd5x11x12xe1x53x05xfcx62x13xaax33x73xd9x87x13x56xb2xfex68xedx37x9ex8cx9dxa6x00x80xbbx31xcax42xcfxb9x3dx6dx9dx97x7cxb3x83x87x2bx1axbax93x4bx42xc6x96xe4xbdx83xabx72xf4xc3x3fxa9x64x7ax16x83x75x70x8exe6x0bx60xa5xe2xd4xc5x1axb4x39x5bxb3x77x5bxcdx96x74x5axdex1axddx59x8bx8axe9xd9xb5xfexecx53x1axc0x9dx70x67x7axf9x3exfbxeaxbbx7exebxe7xb6x9cx5bx21x65x42xe9x4bx58x84x1cx62xe0xd1x15x34xabx93x91xd8xadxaax74x58x17xcbx50x00x71xd0x92x27xe7x12xaaxd2xd0x24x39xa6xa1xf8xd8x3dx0ex49x86x26xb6x67xf6x07xf3xafx95x49xeexc1x2ax78xbcxd3xa1x39x90x9fx2ex79xccx7ex7dx6axb6x1bx26x9bx54x1cx10xfax02xc6x07x0axc3x15xcex16xf5x36x38x39xf9xf0xe3xafx38x90xf7xe4xf5xccx16x12xb1xafxf4x80x5cxd8xc2x12x71xd2x56x8cx24x0dx41xbbx04xcdxdbxa9x1dx81x1cx92xd5x34x5fxc9x8dxccxc3x12xefx19xe5x48x44x24xa5x57xcex0dxa9x72xfbxc3x6cx1bxdbxdfx4ex63x54xdfxc5x49x95x24xf9xcax9cx58x61x03xffx4dxcex29x0dx9bxc2x99x73xe1xf6xfdxdex52x17x07x08xe8x82x75xcex6fxa9x38xdcxbfxa6x64x0cx5cxd2x5cx6dx1cx4cx3bxb7x3ex45x7dx34x9fx54x8axbcx7exa8x7dx66x3dxc8x06xbbx2dx5bx73x70x6dx94xa0xa6xe8x67x00x3dx0exdbx0dxadxa2x2ex8bxc5x6dxc1xcfx59x3bx3ax8ax68xecxcaxf5x70x13x05xb9xbbxaax2ax4cxe7x95x6axe3xc2xb7x21xacx84x22x94xc3xfbx49x87x24x19xebx1bxf6x54x4ex8fx82x91x18x74xc3x18x6exbfxfdx22xb2xf0x53x63x18x7dx25xfex97x06x4cx56x84x8ax56x44x0bx44xd1x35x8axadx4ax85xc6x6dx85x47x28x30xb0xb0x41x97xecx77x98xa3x0fxebxdfx5cx7exe1x67x3bxf1x39x6cx34x38xa2x34x43x14x3axa0xccx7fx6cxeex2cx87xa9xdcx22xaax4dx48xb9xbbx9ax81x54x04x1fxc6x0dx30x96xddx3dxf2xcexdex30x94xd5xfaxd2x19x7fx7ax25x70xffx68xc3xbex05x21x29x7dxe2x85x90xa8x14xd9x27xd4x34x19xa2x19x87xe7xf4xdexbbx14x11xcaxdcx3dx55xc3xdcx9ex31xaex6fxefx84xe2xbex8axfbx8fx21x27xcdx99xfax9fxdaxa5xe4x81xb7xd1x79xedx61x58x5dx31x7fx19x7ex3fxecxe6xbfx64x42x81x32xe5xacx74x9cx8dx69xe4xb1x2cx3bx77x4dxe4x6axd5x4cxa9xd7x66x4ax93x94x48xfax25x73x75x52xc2xfaxd0xedx43x43x3bx9dx9cx62x3fx7exfcxa3xffxdax79xc0x67x0exf7xc9x8bx0cx73xcaxf4x72xe8x14xcbxa8x80x38xa1xebxcexa0x67xd1x57x88x7ex6exc8x35x1fxc5x81x3fx79x76xfdx90xbbx0ex5dxb3x83x2fx34x6cxbfx00x14xf5xa9x9ax5bx73x66xecxe5xcaxabx77x0axa0x9dxcex98x8ax0ex17x5fx9exf7xfexdbxeex88xb6xd3x54x76xa0xbbxa4x9axd7x94x27x11x8cx03x71x84x00xa6xadxa7x3cxbbx13x9ax1dx29x8cx1bxe5x81x79x85xe8xdcxfbx9fxefx63xb9x72xd9x54x87x4ax04x31xa5x16x4cxb4x64xc9x03xc5x08x18x6ex41x74xacxfbx6fxcax64xcfx27xc5xb1x7ex40xb8x5cxcexa2xc5xeax46x64x2ex0bxcexd9xdaxfcxf0x89x20xdfx85x80xa4xe5x37xd0xb3x0ex89xabx34x64xadx3ax6cxcaxa2x88xbdxd3x79xe1x38xeex3bxafx34x21x75x8exc0xf8xd3x63xb6x63x6bxb2x39x4fx13xadx01xd3x1fxbex38x74xa6xf0x83x83x6ex67x9ex4axe4xfdx8fx3ax71x1bx63x25xe9xc4x1ax47x1bxe6xffxadxd4x7fxa5xdbxd3x57xc3xe8xf6x2ex34x3bx55x5axebx72x65xadxc2x75x28x64x68x71xa5x6ex5axf1x82x85x68x3dx70x19xd0x8cxcfx36x7dx11x42x10x0cx94x43x2dxf2x45x72x4dx32xacxeax9ax4fx6dxb0x0dxf1xfbxf0xf9xe4xb5x97xb9x9ax52x10x8cxa6x27x65xd0x23xdex93x04x35xc0xb4xb1x20xc7x2cxc2xc7xfcxb7x27xcex67x0bxc4xaaxf5xd6x2ex99x1ex8bx69xb5x5cx44xfexa5x66xfex1axb4x12xbcx1ex98xa5x7fx2cx96x45x10x0bxc8x79x98x34x5bx2ex94xb9x15x0fx18x9bxe7x27xb6xb8x8exbbx06x09x81xebx65x25x03xb4x41x7ax81x84x92xeexdbx18x44x2exa8xe1x13xcexcfxa3xe6xcax7bxf7xf3xabx1bxc3xe3x8ex13x8ex29xb0x50x2ex68x3ex90x97x31x3bx0fx02x94xdcx97xdexa2x7bx74xcfx1bx9cx5fxe0xdcxf7xfbx06x34x32x9ax56x0dxb5x1ax6dx2bx4exfcx9cxc7x06x9dx2cx29xbbx0cx87x93xe7xe7x38x49x3fxa2x9ax0ax39x5bx7axb1xdfx03xeax9bx84x72xe8x3cx72xa1xbax4dxbex29x7dx4dx22x58xcax84xfax3ax2cx26xc2x60x6axaexcexaax1exe5x5ex90xc0x72x31x00xd7x13x37x45x9fx1axdbxf1xf8xe2xf7x9dx4bxe0x7cx66x0fx20x57xa3xffxd2xa2x72x14x5ax14x2axafxc5x20xadx10x40xc2x3fx6bxfcxd9x6axd2x28x7ex73xd8xb8x24xb5x7cxafxccx2cx1ex84xacx5dx65x39x1dx33x1cx47x05x73x54x5fx8axd8x93x56xd4x67x2axeex2cx1bx7fxf4x1dx8bx10xa1x30xeax50x12x0ex13x3fx51xf6x4cxffxc5xc4x28xb6xb6xe4xb7x6cx53xd4xe4xb9x8axa9xa3x47xa7x1ex41x66xe5x7dx3dx1axaexaax02x4ax78x33xd5x69x55xebx4ax16x78x0dx8fx14xe8xe9x5fx78xecx6bx7cxe6x76xe6x0ax15x21xaex28x06x87x67xf4x23x0axebx87x01x0exeex39x00x64xc4xbex32x34xdfx75xf9x4cxacxd5x85x75x6dx35x2cxfax93x02xfcx83x05x72x1dx4cx5dxb4xabx35x3exc6x3dx44xbex43xdex1fx08x81xf9xfbx46x6cx38xa9xd8x96x36x64xc8x49x63x7fxccx3fx4bxd8xf1xb3xc1x0cxe8xd4xd0x82xb6x2bx53x88x7fxc6x39x56xacxe1x9dxc7xfax66x61xf9x0dx95x13x1fx71x7cx1ex3fxd5x7cx22x08xc2x2ex42xe7x2dx59x6dxe0x42x4ax0fxddx00xfax5cx5ax8cxa9x4dx08x18xd9x5dx0bx90x5cx53x96x1bxc5x33x77x9dx54x4bx65xdax6cxdex76x8fx45x52xf2xefx26x64x3cx7fxc0x12x7ex4cx56x35x01x3ex82x2fx62x88xf7xafxdcx6cx4dx33x51x57x72x31xc4xa6x02x23x9ex60x83x70x97x1cxedx4fx96x8fxacx72xdbx57xa2x9ax22x51x09x82x24x34x05x82x63x4axbax08x48x73xb9xcbxafxf2xeaxf6x4ax9bx20x00x4exc1x45x6fx06x83x17x5cx9bx7ax07xf1x1axfax15x88x0exeex4axd9x35xecxaax9ex7cx91x2dx24x63xa9x05x2ex92xb1xb0xb9x9bx49xa9xe2xc1x6cxccx2cx0ax05xf8x32xc4xb4x95x19x10x25xefx06x44x2axc8xedx26x12x74xf3x2dxb7xcfx48xd4xb5x77x42x7dxcfx6exc7x3dxcdxe6xa7xbex3ax6axadx87xa7x22x36x96x14x1bx4ax02x09x81x60x3cxdfx70xb1xfaxc3x36x44x06x1bx8fx8bx7bxf7x82xe7xb5x60x07x31xa1xd6x54x81x9dx24x37x6exc8x48xa6xe2xdex48x1ex1fx27xb9xd3xd3xd1x39x66x72xf5x7bx07x33x5dx0bx9bxf1xabx3fx7fx32x35xd2xd4x52xcbx68x2dx3cxecx51x88xeex5cx45x11x1axa4x17x0bx34x9bxcfx03x86xaexb4xdex02x94xb7xd8x15x64x99xdcxb3xfex30x50x09x6dx9dx32x34xf8x9dx1ex4ax59x15x4fx37xb0x23xadxd1x26x64x9dx6cxa4x76x50x04x3ax08xe0x62x35x51x17x29xc5xcfxddxa2x83xccxbbxd3x86x59xa1x50x1dx95x1bxe8x4ex88x15xf2xc5x86x8axeexf9x1axe2x28x99xb7x19xadx4dx35xa6x2dxf9xf6x37x78x94x26x7bx9ex68xfex49xa0x39x24xe3x86x6bx0dx76xe4x23xc3xdbx78x0ex41xb3x3bxe2xd1x91x45xe9xddx6fxb8xddx8ex6ax05x83x4dx01xc2xbbxd8x29x2bx4fx6cx2dxa9xb6x39x26x77xcdx62x2bxe0xf1xd2xa5xafx78x98x15x22x0axb9xa7x92x65xadx1bx29x62x30x8axa2x5cxe8x98xc9xf7x2fxc5x37x6bxf3xc4xa2xbcx76x60x38xe7x28x46x98xacxc5x49xecx2axdbx6ax2cx35xafxc2x27x99x2dxfdx1ex86x84xcbxb6x91x81x1cxa9xd9x74xf0xd0x38x72x23xd8x2fxb2xcaxb2x91x5cx5bx8ax19xb3x5exe1x22x90xd4xa2x9cx16xddx4bx92x79xacxb0xd2x6dx01xd4x97xe8x02x71x87xffxf4x16xf7x37x89x89x1fx32xa6x70xb9xc7x58xf6x02x99x86x65x49x0ex4dx7fxfbxcex83x6fxa7x35xf4x34x71x0exeexffxa4xc7xdbx14x38x4exa6x4ax27x3ex8dx37x9ex04x4dxf1x2ax15x16x59x4fx04x96xe0xcaxc4x54xe7xbfx27x8bxa6x47xf4xe0xb0x51x51xafx48xd0xd0x9fx1bxecxa2x99x80x07x7dxe9xe4x40x70x08xdax91x87x84xf7x1cx22x13xeaxe0xabxa0x39x63xe8x6ex46xe8x74x65x84xa8xe7x7ex1cx2ex12x71xb6xa5x07x7axfaxb6x1fx1dx50x12x76xb6x14xafx0fx6ax53xcexc7xd7x01x38x7dx81x7exd3x35xfbx1ex40x68xe4x6bx40xcdx2ex54x18xcdx63xc4x30x24x4cx71x3ex2dxe5x6ax0fx14xedx24x2ax85x5fxafx55xaexa7x9ax2dx58x14xdfxadxc0xe3xa4xafx1bxfax80x8cx84x68x36x32xe9x18xd1x61x43xbcxc5xd1x08xa8x91x29x42x58x0exf4x94x27xd3xcfx80xeexc6x67xafxa5xdex01x1dx66xbfx01xe3xe4xbfxcfx28xa7x21xdax79xb5x18x46xe3x48x11x1ex2cxfexb0xcex79xeex86x65x6bx55x71x34xf5x23x07x55xd1x84x57xa2xe9xfex0bxa2xaax86x52x9bx61x1bx8ex90xa7xeex0ex28x37xe8x10x5ex17x8cx92xf4xc9x90xb5xeaxe3x42xaax99x6cx19x10x7fx94x28xa1xcexa6x1fxe1xd4x25x49x02xf0xf6xa1xbbxe5x2fx7cxfax36x8cx2bxb0xd0x75x2cx6cx2cxcdx65x89x9ex37xcbxbcx83xc4x7axbex8fxb6x39xa5x94x13x71x1cx80x65x41x0ex09x4fxddx2cx44x47x37xc5x5ax4cx53xccx2ex18x66xbfx74x09xb8x26x07xeax5cxf1x1bxd6x59xdax50x4exedxa4xb3x93xd2x78x77x69x98xb0xeex8bxcfxbbx48x5cx64x55x67x80x2bx1cx46xb2x52xa7x7dx14xd9x48x0dx52xadx99xd2x06x52x7cxf0x89xd7x5fxddxcax4ax90xbfx45x7fxe1x11xc5xd6xefxbex8axbbxa2x69xf8x77x14x61xa6x9dx34x69x29x42xa0x87x90x7cxd9xdfx4bx56x39xcax2cx8ax2exa9x39x3bxcbx9cx5ex01xdfx67xa4x27xa9xbaxb5x8ax97x35x5dxd1x4ax3fx9fx07x0fx5axebx11x89xd2xaex59xc2x74x04x7exf4xa1x29x0bx08x80xf2x8dx85x0bx32x18xaax24xbbx47x1ax0exc8xeaxf7x53xdfx6dx1bxabxdcxf0xb4x53xb9xa1xf1x82xc6x61x6bxb1xedxfcxe6xdbx57x95x6bx56xd9x80x6cxf0xcfx0bx04x4fx1bx76xe6x9cx19x72x0dxeax45x6fx68x8cx78x82x6ax72x6exd8xcax79xb3x6ax60x99xb6xb4x47x7ex54xabx95xc2x60x15xcbx26x53xbex7cxc6x69xc7x20xdcx58xa8x60x19xf5x8dxcfx14x05x3fx30x5bx53x83x09x3bx62xa8x1fxa0x71x7ex3exabx63x80x9fxb7xa3x4fxdcx0dx70xc9xbbx9axffx39x7ex2fx53x33xecxc1x0ax96xa1x13x2dxfax4bxb9xa9xa4xebxaax6dxfex1dxcdxa5x4ex3fx83xf1x9cxa7x29x21x89xebx80xadxdbx16x8exf4x53xf5xabxdcxb9x01x56xa0x58x02xc3xa8xdbx1ax37xf8x2dx71x78xd4x28x8dx18xafxb4xa2xf9x80x8dx18x3bx72x34x62xb8xbexccx24x79xd4x8cx32x57x0ex4ex91xbaxe0x05xc2x4exf9xc6x37x97x31x1bx89x62xb2xb4xcaxbcx83xe2x02xc0xb1x60x03x59xa7xc5x21x92x5cxe0x56xb3x89x4dx91xf5x68x5cx9dx8dx71x56xa6x77x70x8fx25x40xf1x89x1ex4cxa2xbexc2xb5xbdxf4xb8xb2x06xc4xafx7dx15x7cxcfx63xfcx52xf5x85x7cx1fx4cx87x13x70x7fx6bx47x2ax63x7cx24x41x12x6cxecx3ex1fxa0x4ax3fx29x03xd9x58x86x5ax44x82x46xd9x6bxa4xa1xd3x55x11x64xf8x08x8bx1fxb9x3bx98x7bx6cxd3xebx3ex8bxecx52x60xe6x08xd9xffx14x1ax07x2dx49x07xe7x95x23xfbx68x81xc0x63x8cxc9xe7xadxe6x63xefx18x9axb8xb6x27xc9x59x35x36xdaxc0x49x9ax1cx40x5bx44x00x02xbex50x71x23x9exa5x97xe4xc9x41xdbx85xbex8cx33xa2x45xd1xa5xc1x25x9dx0fx13x00xb4x1dx71xaax03xbax31x1fx50x40xb1xe4x2ax96x04xdfx35xf0xa5x56x09x3fx6ax9dx5dx58xcdxd4x1bx6ex47x15xcex4ax51xbbx97xdcx8axe1x87xb2xbax6fx9bxb8x76x06xf0xc7x7bx10x80xf2x67x4axd3xc8x08xb1x0bx34x51x2axa7xecx24x0exedx4cx51x0ax99xa3x4dxbexb6x77xedxecx14xc3xc9xffx63x24xcfx44xf0x7cx4axe3xc4x5ax90x89x23xedx3cx26x25x33xbbxb0x30xfdx0dx2cx25xe7x44x57x35xa4x34x7bx28xfax2ex8ax2ax2ax52x85x22x80xb4xcex33xe6x42x51x02x1fx26x7dx2cx2fx28x03xbfx6cx5ax39x31xaexd5x3dx66xefx10x86xedxfdxe8xf6x41x38xe8xd3x4fx68xe2x7dx34x44xa7xcaxc6x49xdcxcfxedxb0xc1x81xf4x50xa5x1fx7dx14x94xdfxccxc5xa7x79x0bxf6x3ax03x65x88x22x50x94xbdxb6x8bx6bxd6xcdxdaxd9xe6x17x40x5bxa5x7exc1x0ex1fx69x25x13x57xcfxd3x3dxe6x2ax36x42x45x72x90x7dx0ex10x2fxccx22xadxf4xc8x6ex44x9cxd1xd8x5cx24x6fx81xcdx00x3axbex6fx64xe9x9dx2ax86xf5x7cx15xc1xccx38x96x9fxb3xc0xa0x4fx23x14x1ax8ex03x5fxc9xaex15xddxbcx2axccx57x67x93xbcxb3xd2x2bxaex9cx52x60x9cx0ax90x4cx28xd5x17x5dx29x6ex67xdax38xadxbbx5cxbex1bx02x1dx6dx3fx0fxb3x8ax1cx71x3dx28xfcxe4x19x99x08xfaxd3xe6xbex4bx32x38x56x93xbdx86xd3x73xabxc3x83x62xe7xd7xcfx84x4cx19x6ax11x6fxcdx23x53x43x5bxd9xc6xabxa5x2fx07xf2xb0xe3xaaxd0xedxe0x8exc9x0bxdbx60x29x10xfax8fxc7xbcx17x3fx1fx55x6dx8cx79xe5xa2x54xc7x9ax07x00xc2xf7x19xa9xa0x78x74xedx67xb3x88xa6x88x79x71x90x25x03xf8xa3xb9x7fx4ex83x44x8fx06x2cx96x6dxd3xa5xf9xa0x46x3bx2bx8ex2dxf5x93xbbxe9x88x04xebx08xa3xe3xdfx24xb8x45xdax87xccx04x07xd1x5exdcx49xc8xaax25x53x05x4fxf8xf4x60xb5x9bxd3x81x94xd6xd0xcbx56x58xc6x4fx10x4exc5x9cx9axa6x57x29xd3x86xecxbfx5dx15x74xe7x95xcbx44x7dxb3x01xedx3dx5exd5xf2xb8x64xebxc8x46xdbx2cx10xfexc9x40xcex90x30x76x81x2ex7bxa1x36x7bx94x2axf5xafx4cx1fx28x29xc8x72xbdx9dxd8x1bx9cx79x13x95x4axa9xb2xb2xbbxdaxc0x25xa4xb6x42x50xf1x2bx58xbbxbdx4cx0ax61x8axe8x49x00xabxa6xb4xa8xfex7bxaax03x25xb4xa0x70x44x2ax46xc9x0exbexcdxc7x4ex01xc9x30x4fx96xaex73x03xc3x60xb3x1dxc3x19x0fxf2x82xc2xb2x42x0fx8bx11xa6x80xbfxf7x2cxfbxa5x96xc6xeax91xc3x46xe1x33x33x1exa0x70x5bxadxd6x8exe3xb0xc1xa9x6bxbfx28x93x94x10x3fx90x23x14xeex6fx56x74x8exf1xb4xfbxbdx33x51x9dx08xd3x3ex58x15x17x91xf1x19xacx7ex8bx70x4bx52x3dx89x55x73x54x43x72x99x66x83x85x13x58xe0xcex24x65x6bx9bx27x2bx4exf5x01x39x86x58xf0x46x6dx44xddxbcx18xf1xcexbcx9bx20x31x52x95xe3x7ex52x48xf9xfbx19x04x74x63x8cxc8x38x40x43x31x0fx10xd4xa3x48x9cx19xf7xf5x9ax75xb6x2bxcdx49x3ex28x2fx3bxf9xd5x18xeex8bx78x3dxdex21x42x69x29x48x85x72x6fx1dx8bxd6xa1xc0xe9x30x4cx23x58xc5x50x1dxf6xacx14x7fxb4x41xffxa7x73xa5xccx3axe0x17xafx98xf4x0cxb7x46x66x15xe5x43x89x0fx8cx1axbexd1x96x61xc7x89x81xbexcfxf7x2bxf0x8bx22x74xe3x50x1cx75xdbxd6x04x78x96x77x77x0bx43x73x95xf4x0fx54xafx2fx3bxc9xb7x61xd4x97x19x8dx23x50x9ax86x63xcax9fxf7xe5x94xe5x59x26x6cx16xccx40x3axdex09xc4x1bx3cx50x68xa1x27x45x88xc8xfdx7ax67x49x98x8ex24xe7xbax5axe6x77xdcx7bx69xd8x92xa8x4ex25xa6x9cx95xe5xafx67x5bx87x67x92xaexc9xc3x74x84x09x3bx45x3fx72xf1x79x5dxe1x8execx40x15x11xb6x7ex7cx9dx98x6bxd9x9ex1exf0xeax18x2cx25xb5x7dxaax1dxcax04xecxfcxd5x04x24x60x1cx45x3cx67x6ex5cx7ex1dx66xa9xc5xc9xa1xb9x3dxf1x71x28xcdx13xc4x8ex0fx81x9cx44x88xccx31xa3xf6x03xfbx33x9fx9exf3xa2x95x89xb0xbex5ax9bxbexfcx62x0fxebx69x81xeaxd9xe1x3cx9fx1exeaxebx8dxc3x4fxd3x8cx0ex89x32x3ex99x2axe1x0fx9fxedxa1xe0xfdx40x83x7fx40x07x49xc0x58x3fxd2xf6xe3x91x4ex62x90xbexcexa5xabx15x51x53x54xc7xc4xbdx2cx92x57xc0x6bxa9x7fx15x5dxa1x09x9dxb2x4fxf6xd9xa2xebxcdxd5x62x6fx84x89xe3xa4x9cx5axd9xddx2exfcxdexb5xa5x18x83x9ex86x44xf7x06x03x9axb8x12xf6xe9xf5x87x81x30xa9x2dx1dxc1x35x7ex5axf7x34x93x71xf8x39x4cxd4x90x07xdax2cx7bx3fx98xfdx75x51x64x09xb8x52x65x7fx06x91x53x38xa3x31xaex0ax25x7ax34xd8xabx7bx3dx72x04x04x6ex1bx2bx59x11xa8x1cxd0x98xa9x09x0ax3dx95xc3x02xc6xb0x00x35x9cx0dxb1xc9xc2x1fx66xfdxc4x2axb2xcbx45x96x9cx09x5bx2ex4dxb5x9fxa6x8ax97xf6x07xb0x80x73xa2x7fx43x30xd4xe3x31x96xc6x0cxf3xafxbax4cxc8x65xecx72x90x9bx12x0axe2xb8x10x3fxf9xbcxccx35xd4xdex70xa3x99x2fx16x51x11x00x2fx48x4dx55x69xa7xbfx92xe7x75x7ax9fxdaxdaxeex0bxc2x5bx6ex03xb1x7bx2exd5x56xa7x00x44x89xb0x24xcfx70x39x76x42x84x5cx83x20xacx01x97xe7x08x14x1bx98x65xaexbexfcx1ex7bx96x54x65xc7x6dxe5x55xddx38x5dxd0x12xf5xdbx0cx49xc1xe6x02x0exbdxf4x17x3cx69x0dx78x0ex24x6dx65xa2xc2x13x9fx21x44xf7x41x8fx87x83xfexcbx59x73x22xafx39xd9xafx89xfbxecx6bxc4xe8x84x41xdbxe8xa2x62xe6xbdx05xb3x53x5cxcexcbxd8x71xfdxdcx69xf7x8exc4xa1xe9x0axd3x2axf9x74xe9x61xc9x8axe2x7dx86xc2x84x8fx9ex52x29x99x1cxe7x94x1axdcx70x45xa3x3fxa1xa5xeaxbfx55x3fx5fx17x1bxc0xd1x1dxe8xe1x6exc4x19xd4x68xe6xb6xc5xcax61xb4x6cx0axe8xeaxb4xe6xcfxb7xd2x2dxd3xa0x26xd5x45x46x52x14xebxaax2bx97x97xa8xbdx50xc3x32x01x1ax15x5exaax99x8ex50xfbx8fxe7x11xa8x5bx16x1dxb1xe3x99x32x53x03x31x7ex69xfcx32xb8x6dxc1xbbx00xf3x6ax3ax05x86xecxfexacx46x2cxc4x99x78x5fxb3x0fxcex54x6fx8ax6ex73x5fx45xb4x77x86xfaxaex82x1ex80x8cx61x4fx63x43x55x64x64x2fx43xa4xc9x8ax0cx32xacx20xeax1exc4x48x0fxd9xecxadx4fx6ax4dx5exc3x9bx98x09xf4x5axacxd5x79xeaxc5x44xc4xd8xa5xc5xb0x92x75xadx32x07x6ex98x11x8dx4bx3cx91x6ex76xccxdbxabxc8x15xa5x7dx85x57x87x2cxeax2ax4bx51x9ax2cx7ax98x4fx02x3bxf6xb4xb5x79x0cxb5xc1xc4x84x7cx88xb1xe9x02xcbx8dxfax60xebx55x31x2exa8xe7xa3xf9x6cx32x5fx48xb8x46x6bxe2x1cxc0xe9xb5xb1xb9x6cx44x37xd9xb6xecx1dx47x56x67x1dx57x17xd6x87x70x74xaex61x24x7ax93x2fx5ex8fx07xc7x9ax42x2axf4x52x44x29x7bxfbxc3x0ax9cx17x00xe9xc6xeaxd0xe3x46xf0x6fx7ax6bx51xd5x18x0dx5axa5x87x26x5bx92xbaxe9x34x2cx34x97xd9x9fx48x3cxebx18xa1xc1xf7xdcxfbx18xe9xc7xb5x4cxaex54x6bx4fx94x81xd2xb5x49xbdx1fx23xb7xa5xb1x70x34xb2xb5x34x67x70xa6x67xcax7cx24xafx5dx14x30x2axe2x49x25x31xc0x71x18xf6xd9x51xdexd0x63x45xdcx2bxc6x71x14xebx89x3ax81xfdxb7x0bxecxfdx77x21x8bxe6x5ex70xb8xf2x10x73x44x71xc5x16x1cx47x1cx9dxf4x9dx2ex53xe4x7dxedx54xb4xd2x7cx1bx9bx98x27x73x4dx42xbbx70xaax92x4excex4fxa7x04x6fx5bx31xe6x0axfcxb2x80xfcxaax3ex12xd9xf0x46x86x75x48x84xebx3ax88xd8x8cx78x5ex5fxefx3dx79xc1', 2)

如果您还想混淆字符串,可以指定--mix-str选项:

pyarmor obfuscate --mix-str script.py

为了打包您的Python应用程序,您需要pyinstaller:

pip install pyinstaller

然后运行:

pyarmor pack script.py

dist文件夹中,您将找到要分发的模糊绑定应用程序。

最新更新