登录 注册
当前位置:主页 > 资源下载 > 9 > retdec-python是一个Python库及工具,它能够便捷地通过REST API接口来访问retdec.com的反编译服务

retdec-python是一个Python库及工具,它能够便捷地通过REST API接口来访问retdec.com的反编译服务

  • 更新:2024-10-19 23:36:32
  • 大小:75KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

retdec-python 警告 反编译服务将被禁用(请参阅)。 这将使当前存储库中的库和工具不起作用。 我将保持资源库在线,以防对任何人有帮助。 描述 Python库和工具可通过其公共轻松访问反编译服务。 您可以将库合并到自己的脚本中: from retdec . decompiler import Decompiler decompiler = Decompiler ( api_key = 'YOUR-API-KEY' ) decompilation = decompiler . start_decompilation ( input_file = 'file.exe' ) decompilation . wait_until_finished () decompilation . save_hll_code () 或者,您可以使用提供的脚本进行独立的反编译: $ decomp