gpt4 book ai didi

Python > Uncompyle2 - 用法

转载 作者:太空狗 更新时间:2023-10-29 20:42:27 25 4
gpt4 key购买 nike

我正在尝试反编译一些 .pyc 文件 - 只需要它们的一些基本数据,我听说最好的是 Uncompyle2,

所以我安装了 Python27(Win),然后我从 https://github.com/wibiti/uncompyle2 安装了 Uncompyle2 - 到目前为止一切正常,现在我试图找出如何使用它,自述文件说我需要编写 uncompyle2 --h 以获得更多帮助,我正在寻找这个“未定义的” "消息,接下来我尝试在解释器中通过 import uncompyle2 导入脚本,我认为模块已加载(在我在解释器中键入 uncompyle2 后它说,它从 __init__) 但仍然无法获得它的任何功能来开始工作,如果我尝试做任何事情它会说“语法错误”(即使我像自述文件一样输入所有内容)和 - -h 也不起作用,

我做错了什么?

顺便说一句,我试图找到一些在线转换器,但由于 int 的 2.6.4 python 编译文件我找不到任何可以使用它的东西。

最佳答案

来自空闲

import uncompyle2
with open("uncompiled file.py", "wb") as fileobj:
uncompyle2.uncompyle_file("afile.pyc", fileobj)

结果应该是您未编译的源代码。

编辑 2/15/18

对于 python 3 使用 uncompyle 6并以“w”模式(不是“wb”)打开输出文件

import uncompyle6
with open("uncompiled file.py", "w") as fileobj:
uncompyle6.uncompyle_file("afile.pyc", fileobj)

关于Python > Uncompyle2 - 用法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16508578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com