vote up 3 vote down star

hello, I wrote a lot of important python code for my project. unfortunately, I ran sed with wrong options and lost my files :( In repo these files are very old, but I have the pyc files.

How can I convert pyc files to py?

Thanks!

flag

0% accept rate
Voted to close as duplicate (of 48211) – Charles Duffy Nov 3 at 12:21

6 Answers

vote up 6 vote down

http://www.crazy-compilers.com/decompyle/

There is still the package on Debian and friends (called decompyle) of the standalone software (ie, no need to send your pyc files), but it probably won't decompile 2.6 (or earlier).

link|flag
vote up 3 vote down

A quick search found a tool at http://byteplay.googlecode.com/svn/trunk/byteplay.py . http://wiki.python.org/moin/ByteplayDoc has docs.

I also saw http://www.depython.net/ and it looks really easy to use.

link|flag
vote up 8 vote down

http://stackoverflow.com/questions/48211/free-python-decompiler-that-is-not-an-online-service

link|flag
Someone should probably close this question as a duplicate. – Brian Dec 18 '08 at 20:36
vote up 9 vote down

I know this doesn't answer your question direcly, but

For the love of the Flying Spaghetti Monster, start using version control!

Seriously, don't ever ever ever let this happen again. You should be using source control and some form of regular backups on every last line of code that you write.

There are a thousand good VCS's out there, hell just search stackoverflow for options. Bazaar is a good example of one that is easy-as-pie to use. Back it up to a portable hard drive, another PC, or use Dropbox for automatic backups.

link|flag
yes, i'm using version control system, but last time, i'm hardly working on code anf forgot commit my changes ;( – Golovko Dec 18 '08 at 17:04
1  
downvoting because this doesn't address the question at all – corey goldberg Dec 18 '08 at 19:25
@corey: yes but he is right, +1 – Stefano Borini Nov 3 at 12:11
vote up 0 vote down

Use a VCS, and use it wisely. Which means "commit early, commit often". You get backups as free bonus.

link|flag
vote up 0 vote down

you can use depython.com online service. http://depython.com is a new alternative online decompiling tool for Python pyc files. It does not have file size limit.

link|flag

Your Answer

Get an OpenID
or

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