Free Python decompiler that is not an online service?

Posted by Readonly on Stack Overflow See other posts from Stack Overflow or by Readonly
Published on 2008-09-07T06:54:54Z Indexed on 2010/03/13 13:45 UTC
Read the original article Hit count: 722

Filed under:
|

Is there a library or application that can decompile Python 2.4+ bytecode to obtain the source code?

A search revealed:

  • http://depython.net - an online service that you need to upload a pyc or pyo file to
  • the dis module - allows you to disassemble, but not decompile bytecode
  • decompile.py - works only for 1.5.2 or 2.0
  • decompyle - an decompiling online service that you need to pay for and upload your pyc to

© Stack Overflow or respective owner

Related posts about python

Related posts about decompiling