包括python代码中的可执行文件

时间:2016-03-14 10:51:17

标签: python

我想保护我的python文件+ py2exe whit DmiDecode for Windows(link) ,bat我想创建独立文件!

是否可以在python代码中包含DmiDecode(在ram内存中运行以获取uuid)而不在hdd上写入?

我的实际代码是:

def lic():
    try:
        if hashlib.md5(open('c:\dmidecode.exe', 'rb').read()).hexdigest() != 'bca173dc4758676dd812c7632017d0ae':
            sys.exit(1)
        out = os.popen("c:\dmidecode.exe -s system-uuid").read().strip()
        if out not in licente_valide:
            sys.exit(1)
    except:
        sys.exit(1)

lic()

0 个答案:

没有答案