{"id":13570079,"url":"https://github.com/rocky/python-decompile3","last_synced_at":"2025-05-13T22:02:50.162Z","repository":{"id":39615052,"uuid":"187480317","full_name":"rocky/python-decompile3","owner":"rocky","description":"Python decompiler for 3.7-3.8 Stripped down from uncompyle6 so we can refactor and start to fix up some long-standing problems","archived":false,"fork":false,"pushed_at":"2024-11-30T22:09:26.000Z","size":6228,"stargazers_count":1157,"open_issues_count":10,"forks_count":154,"subscribers_count":48,"default_branch":"master","last_synced_at":"2025-04-28T17:19:02.414Z","etag":null,"topics":["bytecode","decompiler","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rocky.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.md","contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["rocky"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":"rocky","issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-05-19T13:28:54.000Z","updated_at":"2025-04-27T13:15:49.000Z","dependencies_parsed_at":"2023-11-13T14:33:21.970Z","dependency_job_id":"1f033c3e-823e-44e8-bc6c-abfa83c454d7","html_url":"https://github.com/rocky/python-decompile3","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rocky%2Fpython-decompile3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rocky%2Fpython-decompile3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rocky%2Fpython-decompile3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rocky%2Fpython-decompile3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rocky","download_url":"https://codeload.github.com/rocky/python-decompile3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254036809,"owners_count":22003652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bytecode","decompiler","python"],"created_at":"2024-08-01T14:00:48.001Z","updated_at":"2025-05-13T22:02:50.117Z","avatar_url":"https://github.com/rocky.png","language":"Python","readme":"|TravisCI| |CircleCI| |Pypi Installs|\n\n.. contents::\n\ndecompyle3\n==========\n\nA native Python cross-version decompiler and fragment decompiler.\nA reworking of uncompyle6_.\n\n\nIntroduction\n------------\n\n*decompyle3* translates Python bytecode back into equivalent Python\nsource code. It accepts bytecodes from Python version 3.7 on.\n\nFor decompilation of older Python bytecode see uncompyle6_.\n\nWhy this?\n---------\n\nUncompyle6 is awesome, but it has a fundamental problem in the way\nit handles control flow. In the early days of Python when there was\nlittle optimization and code was generated in a very template-oriented\nway, figuring out control flow-structures could be done by simply looking at code patterns.\n\nOver the years more code optimization, specifically around handling\njumps has made it harder to support detecting control flow strictly\nfrom code patterns. This was noticed as far back as Python 2.4 (2004)\nbut since this is a difficult problem, so far it hasn't been tackled\nin a satisfactory way.\n\nThe initial attempt to fix to this problem was to add markers in the\ninstruction stream, initially this was a `COME_FROM` instruction, and\nthen use that in pattern detection.\n\nOver the years, I've extended that to be more specific, so\n`COME_FROM_LOOP` and `COME_FROM_WITH` were added. And I added checks\nat grammar-reduce time to make try to make sure jumps match with\nsupposed `COME_FROM` targets.\n\nHowever all of this is complicated, not robust, has greatly slowed\ndown deparsing and is not really tenable.\n\nSo in this project we started rewriting and refactoring the grammar.\n\nHowever it is clear that even this isn't enough. Control flow needs\nto be addressed by using dominators and reverse-dominators which\nthe python-control-flow_ project can give.\n\nThis I am *finally* slowly doing in yet another non-public project. It\nis a lot of work.  Funding in the form of sponsorhip while greatly\nappreciated isn't commensurate with the amount of effort, and\ncurrently I have a full-time job. So it may take time before it is\navailable publicly, if at all.\n\nRequirements\n------------\n\nThe code here can be run on Python versions 3.7 or 3.8. The bytecode\nfiles it can read have been tested on Python bytecodes from versions\n3.7 and 3.8.\n\nInstallation\n------------\n\nYou can install from PyPI using the name ``decompyle3``::\n\n    pip install decompyle3\n\n\nTo install from source code, this project uses setup.py, so it follows the standard Python routine::\n\n    $ pip install -e .  # set up to run from source tree\n\nor::\n\n    $ python setup.py install # may need sudo\n\nA GNU Makefile is also provided so :code:`make install` (possibly as root or\nsudo) will do the steps above.\n\nRunning Tests\n-------------\n\n::\n\n   make check\n\nA GNU makefile has been added to smooth over setting running the right\ncommand, and running tests from fastest to slowest.\n\nIf you have remake_ installed, you can see the list of all tasks\nincluding tests via :code:`remake --tasks`\n\n\nUsage\n-----\n\nRun\n\n::\n\n$ decompyle3 *compiled-python-file-pyc-or-pyo*\n\nFor usage help:\n\n::\n\n   $ decompyle3 -h\n\nVerification\n------------\n\nIf you want Python syntax verification of the correctness of the\ndecompilation process, add the :code:`--syntax-verify` option. However since\nPython syntax changes, you should use this option if the bytecode is\nthe right bytecode for the Python interpreter that will be checking\nthe syntax.\n\nYou can also cross compare the results with another python decompiler\nlike unpyc37_ . Since they work differently, bugs here often aren't in\nthat, and vice versa.\n\nThere is an interesting class of these programs that is readily\navailable give stronger verification: those programs that when run\ntest themselves. Our test suite includes these.\n\nAnd Python comes with another a set of programs like this: its test\nsuite for the standard library. We have some code in :code:`test/stdlib` to\nfacilitate this kind of checking too.\n\nKnown Bugs/Restrictions\n-----------------------\n\n**We support only released versions, not candidate versions.** Note however\nthat the magic of a released version is usually the same as the *last* candidate version prior to release.\n\nWe also don't handle PJOrion_ or otherwise obfuscated code. For\nPJOrion try: PJOrion Deobfuscator_ to unscramble the bytecode to get\nvalid bytecode before trying this tool; pydecipher_ might help with that.\n\nThis program can't decompile Microsoft Windows EXE files created by\nPy2EXE_, although we can probably decompile the code after you extract\nthe bytecode properly. `Pydeinstaller \u003chttps://github.com/charles-dyfis-net/pydeinstaller\u003e`_ may help with unpacking Pyinstaller bundlers.\n\nHandling pathologically long lists of expressions or statements is\nslow. We don't handle Cython_ or MicroPython which don't use bytecode.\n\nThere are numerous bugs in decompilation. And that's true for every\nother CPython decompiler I have encountered, even the ones that\nclaimed to be \"perfect\" on some particular version like 2.4.\n\nAs Python progresses decompilation also gets harder because the\ncompilation is more sophisticated and the language itself is more\nsophisticated. I suspect that attempts there will be fewer ad-hoc\nattempts like unpyc37_ (which is based on a 3.3 decompiler) simply\nbecause it is harder to do so. The good news, at least from my\nstandpoint, is that I think I understand what's needed to address the\nproblems in a more robust way. But right now until such time as\nproject is better funded, I do not intend to make any serious effort\nto support Python versions 3.8 or 3.9, including bugs that might come\nin. I imagine at some point I may be interested in it.\n\nYou can easily find bugs by running the tests against the standard\ntest suite that Python uses to check itself. At any given time, there are\ndozens of known problems that are pretty well isolated and that could\nbe solved if one were to put in the time to do so. The problem is that\nthere aren't that many people who have been working on bug fixing.\n\nYou may run across a bug, that you want to report. Please do so. But\nbe aware that it might not get my attention for a while. If you\nsponsor or support the project in some way, I'll prioritize your\nissues above the queue of other things I might be doing instead.\n\nSee Also\n--------\n\n* https://github.com/andrew-tavera/unpyc37/ : indirect fork of https://code.google.com/archive/p/unpyc3/ The above projects use a different decompiling technique than what is used here. Instructions are walked. Some instructions use the stack to generate strings, while others don't. Because control flow isn't dealt with directly, it too suffers the same problems as the various `uncompyle` and `decompyle` programs.\n* https://github.com/rocky/python-xdis : Cross Python version disassembler\n* https://github.com/rocky/python-xasm : Cross Python version assembler\n* https://github.com/rocky/python-decompile3/wiki : Wiki Documents which describe the code and aspects of it in more detail\n\n.. _Cython: https://en.wikipedia.org/wiki/Cython\n.. _MicroPython: https://micropython.org\n.. _uncompyle6: https://pypi.python.org/pypi/uncompyle6\n.. _python-control-flow: https://github.com/rocky/python-control-flow\n.. _trepan: https://pypi.python.org/pypi/trepan3k\n.. _compiler: https://pypi.python.org/pypi/spark_parser\n.. _HISTORY: https://github.com/rocky/python-decompile3/blob/master/HISTORY.md\n.. _debuggers: https://pypi.python.org/pypi/trepan3k\n.. _remake: https://bashdb.sf.net/remake\n.. _unpyc37: https://github.com/andrew-tavera/unpyc37/\n.. _this: https://github.com/rocky/python-decompile3/wiki/Deparsing-technology-and-its-use-in-exact-location-reporting\n.. |TravisCI| image:: https://travis-ci.org/rocky/python-decompile3.svg\n\t\t :target: https://travis-ci.org/rocky/python-decompile3\n.. |CircleCI| image:: https://circleci.com/gh/rocky/python-decompile3.svg?style=svg\n\t  :target: https://circleci.com/gh/rocky/python-decompile3\n\n.. _PJOrion: http://www.koreanrandom.com/forum/topic/15280-pjorion-%D1%80%D0%B5%D0%B4%D0%B0%D0%BA%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%BA%D0%BE%D0%BC%D0%BF%D0%B8%D0%BB%D1%8F%D1%86%D0%B8%D1%8F-%D0%B4%D0%B5%D0%BA%D0%BE%D0%BC%D0%BF%D0%B8%D0%BB%D1%8F%D1%86%D0%B8%D1%8F-%D0%BE%D0%B1%D1%84\n.. _Deobfuscator: https://github.com/extremecoders-re/PjOrion-Deobfuscator\n.. _Py2EXE: https://en.wikipedia.org/wiki/Py2exe\n.. |Supported Python Versions| image:: https://img.shields.io/pypi/pyversions/decompyle3.svg\n.. |Latest Version| image:: https://badge.fury.io/py/decompyle3.svg\n\t\t :target: https://badge.fury.io/py/decompyle3\n.. |PyPI Installs| image:: https://pepy.tech/badge/decompyle3/month\n.. _pydecipher: https://github.com/mitre/pydecipher\n","funding_links":["https://github.com/sponsors/rocky","https://liberapay.com/rocky"],"categories":["Decompilers","Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frocky%2Fpython-decompile3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frocky%2Fpython-decompile3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frocky%2Fpython-decompile3/lists"}