Skip to content

peteyan/pyc2py

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyc2py
======
Pyc2py is a python decompiler: you can use it to retrieve the source code 
when having the bytecode file (*.pyc).

It is currently beta software and was only tested with python2.6 bytecode 
files.

Usage:
./main.py <path_to_your_pyc_file> > output.py

Important note
==============
In order to simplify its design, pyc2py uses python introspection features.
Thanks to this, bytecode analysis is limited to function and class methods.
As a consequence, the first step of the analysis is the import of the module 
implemented in the *.pyc input file; if this module imports other modules, 
these additional modules must be present in the "python path" (in either form,
'.py' or '.pyc'), otherwise this preliminary import will fail.



About

The smart python decompiler.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%