vote up 10 vote down star
5

Is there a library or app 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
flag

7 Answers

vote up 0 vote down

You doesn't want an online service but depython.com is a good python decompile service. Give it a try.

link|flag
vote up 0 vote down

I have a good experience with UnPyc - it perfectly recovered my Django models.py.

link|flag
vote up 1 vote down

There is a fork of decompyle called unpyc that has seen some activity recently. I tried using it with some pyc files but it didn't work with them.

link|flag
vote up 6 vote down

As others said, the free version of decompyle only works up to 2.3. But sometimes you can get it to work by converting your newer pyc to the old marshalling format.

The following script takes two arguments, the input and the output file, and converts it into something which decompyle will at least try its teeth on.

#!/usr/bin/python
import marshal
import sys

MAGIC23 = ';\xf2\r\n'

def load_pyc(filename):
        f = open(filename, 'rb')
        try:
                magic = f.read(4)
                timestamp = f.read(4)
                codeobject = marshal.load(f)
        finally:
                f.close()
                return magic, timestamp, codeobject

def dump_pyc_23(filename, timestamp, codeobject):
        assert len(timestamp)==4
        f = open(filename, 'wb')
        try:
                f.write(MAGIC23)
                f.write(timestamp)
                marshal.dump(codeobject, f, 0)
        finally:
                f.close()

magic, timestamp, codeobject = load_pyc(sys.argv[1])
dump_pyc_23(sys.argv[2], timestamp, codeobject)

Good Luck!

link|flag
vote up 2 vote down

Here is a little more info on decompyle: this is the same software that became the commercial decompyle service. It used to be open source and an old version of it is available/maintained as a debian package (including source code).

It will decompile Python up to version 2.3, but not 2.4+.

link|flag
vote up 1 vote down

I've used decompyle (the Ubuntu package, not the online service, I don't know if they're the same thing, though) in the past and was more than satisfied with the results. It saved me hours of work after a rm *.py instead of rm *.pyc.

link|flag
2  
Yet another reason why version control is your friend. :-) – Just Some Guy Oct 11 '08 at 13:41
vote up 0 vote down

I am incredibly surprised at the accuracy of depython.net

What I think they do is use the dis module and reconstruct your code with it. You'll have to find a way to do that or someone who has written the algorithm already.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.