Skip to main content

Python cross-version byte-code decompiler

Project description

buildstatus Pypi Installs Latest Version Supported Python Versions

packagestatus

uncompyle6

A native Python cross-version decompiler and fragment decompiler. The successor to decompyle, uncompyle, and uncompyle2.

Introduction

uncompyle6 translates Python bytecode back into equivalent Python source code. It accepts bytecodes from Python version 1.0 to version 3.8, spanning over 24 years of Python releases. We include Dropbox’s Python 2.5 bytecode and some PyPy bytecodes.

Why this?

Ok, I’ll say it: this software is amazing. It is more than your normal hacky decompiler. Using compiler technology, the program creates a parse tree of the program from the instructions; nodes at the upper levels that look a little like what might come from a Python AST. So we can really classify and understand what’s going on in sections of Python bytecode.

Building on this, another thing that makes this different from other CPython bytecode decompilers is the ability to deparse just fragments of source code and give source-code information around a given bytecode offset.

I use the tree fragments to deparse fragments of code at run time inside my trepan debuggers. For that, bytecode offsets are recorded and associated with fragments of the source code. This purpose, although compatible with the original intention, is yet a little bit different. See this for more information.

Python fragment deparsing given an instruction offset is useful in showing stack traces and can be encorporated into any program that wants to show a location in more detail than just a line number at runtime. This code can be also used when source-code information does not exist and there is just bytecode. Again, my debuggers make use of this.

There were (and still are) a number of decompyle, uncompyle, uncompyle2, uncompyle3 forks around. Many of them come basically from the same code base, and (almost?) all of them are no longer actively maintained. One was really good at decompiling Python 1.5-2.3, another really good at Python 2.7, but that only. Another handles Python 3.2 only; another patched that and handled only 3.3. You get the idea. This code pulls all of these forks together and moves forward. There is some serious refactoring and cleanup in this code base over those old forks. Even more experimental refactoring is going on in decompyle3.

This demonstrably does the best in decompiling Python across all Python versions. And even when there is another project that only provides decompilation for subset of Python versions, we generally do demonstrably better for those as well.

How can we tell? By taking Python bytecode that comes distributed with that version of Python and decompiling these. Among those that successfully decompile, we can then make sure the resulting programs are syntactically correct by running the Python interpreter for that bytecode version. Finally, in cases where the program has a test for itself, we can run the check on the decompiled code.

We use an automated processes to find bugs. In the issue trackers for other decompilers, you will find a number of bugs we’ve found along the way. Very few to none of them are fixed in the other decompilers.

Requirements

The code here can be run on Python versions 2.6 or later, PyPy 3-2.4 and later. Python versions 2.4-2.7 are supported in the python-2.4 branch. The bytecode files it can read have been tested on Python bytecodes from versions 1.4, 2.1-2.7, and 3.0-3.8 and later PyPy versions.

Installation

This uses setup.py, so it follows the standard Python routine:

$ pip install -e .  # set up to run from source tree, or...
$ python setup.py install # may need sudo

A GNU makefile is also provided so make install (possibly as root or sudo) will do the steps above.

Running Tests

$  make check

A GNU makefile has been added to smooth over setting running the right command, and running tests from fastest to slowest.

If you have remake installed, you can see the list of all tasks including tests via remake --tasks

Usage

Run

$ uncompyle6 *compiled-python-file-pyc-or-pyo*

For usage help:

$ uncompyle6 -h

Verification

In older versions of Python it was possible to verify bytecode by decompiling bytecode, and then compiling using the Python interpreter for that bytecode version. Having done this the bytecode produced could be compared with the original bytecode. However as Python’s code generation got better, this no longer was feasible.

If you want Python syntax verification of the correctness of the decompilation process, add the --syntax-verify option. However since Python syntax changes, you should use this option if the bytecode is the right bytecode for the Python interpreter that will be checking the syntax.

You can also cross compare the results with either another version of uncompyle6 since there are are sometimes regressions in decompiling specific bytecode as the overall quality improves.

For Python 3.7 and above, the code in decompyle3 is generally better.

Or try specific another python decompiler like uncompyle2, unpyc37, or pycdc. Since the later two work differently, bugs here often aren’t in that, and vice versa.

There is an interesting class of these programs that is readily available give stronger verification: those programs that when run test themselves. Our test suite includes these.

And Python comes with another a set of programs like this: its test suite for the standard library. We have some code in test/stdlib to facilitate this kind of checking too.

Known Bugs/Restrictions

The biggest known and possibly fixable (but hard) problem has to do with handling control flow. (Python has probably the most diverse and screwy set of compound statements I’ve ever seen; there are “else” clauses on loops and try blocks that I suspect many programmers don’t know about.)

All of the Python decompilers that I have looked at have problems decompiling Python’s control flow. In some cases we can detect an erroneous decompilation and report that.

Python support is pretty good for Python 2

On the lower end of Python versions, decompilation seems pretty good although we don’t have any automated testing in place for Python’s distributed tests. Also, we don’t have a Python interpreter for versions 1.6, and 2.0.

In the Python 3 series, Python support is is strongest around 3.4 or 3.3 and drops off as you move further away from those versions. Python 3.0 is weird in that it in some ways resembles 2.6 more than it does 3.1 or 2.7. Python 3.6 changes things drastically by using word codes rather than byte codes. As a result, the jump offset field in a jump instruction argument has been reduced. This makes the EXTENDED_ARG instructions are now more prevalent in jump instruction; previously they had been rare. Perhaps to compensate for the additional EXTENDED_ARG instructions, additional jump optimization has been added. So in sum handling control flow by ad hoc means as is currently done is worse.

Between Python 3.5, 3.6, 3.7 there have been major changes to the MAKE_FUNCTION and CALL_FUNCTION instructions.

Python 3.8 removes SETUP_LOOP, SETUP_EXCEPT, BREAK_LOOP, and CONTINUE_LOOP, instructions which may make control-flow detection harder, lacking the more sophisticated control-flow analysis that is planned. We’ll see.

Currently not all Python magic numbers are supported. Specifically in some versions of Python, notably Python 3.6, the magic number has changes several times within a version.

We support only released versions, not candidate versions. Note however that the magic of a released version is usually the same as the last candidate version prior to release.

There are also customized Python interpreters, notably Dropbox, which use their own magic and encrypt bytecode. With the exception of the Dropbox’s old Python 2.5 interpreter this kind of thing is not handled.

We also don’t handle PJOrion or otherwise obfuscated code. For PJOrion try: PJOrion Deobfuscator to unscramble the bytecode to get valid bytecode before trying this tool. This program can’t decompile Microsoft Windows EXE files created by Py2EXE, although we can probably decompile the code after you extract the bytecode properly. Handling pathologically long lists of expressions or statements is slow. We don’t handle Cython or MicroPython which don’t use bytecode.

There are numerous bugs in decompilation. And that’s true for every other CPython decompiler I have encountered, even the ones that claimed to be “perfect” on some particular version like 2.4.

As Python progresses decompilation also gets harder because the compilation is more sophisticated and the language itself is more sophisticated. I suspect that attempts there will be fewer ad-hoc attempts like unpyc37 (which is based on a 3.3 decompiler) simply because it is harder to do so. The good news, at least from my standpoint, is that I think I understand what’s needed to address the problems in a more robust way. But right now until such time as project is better funded, I do not intend to make any serious effort to support Python versions 3.8 or 3.9, including bugs that might come in. I imagine at some point I may be interested in it.

You can easily find bugs by running the tests against the standard test suite that Python uses to check itself. At any given time, there are dozens of known problems that are pretty well isolated and that could be solved if one were to put in the time to do so. The problem is that there aren’t that many people who have been working on bug fixing.

Some of the bugs in 3.7 and 3.8 are simply a matter of back-porting the fixes in decompyle3.

You may run across a bug, that you want to report. Please do so. But be aware that it might not get my attention for a while. If you sponsor or support the project in some way, I’ll prioritize your issues above the queue of other things I might be doing instead.

See Also

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uncompyle6-3.8.0.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

uncompyle6-3.8.0-py310-none-any.whl (317.4 kB view details)

Uploaded Python 3.10

uncompyle6-3.8.0-py39-none-any.whl (317.4 kB view details)

Uploaded Python 3.9

uncompyle6-3.8.0-py38-none-any.whl (317.4 kB view details)

Uploaded Python 3.8

uncompyle6-3.8.0-py37-none-any.whl (317.4 kB view details)

Uploaded Python 3.7

uncompyle6-3.8.0-py36-none-any.whl (317.4 kB view details)

Uploaded Python 3.6

uncompyle6-3.8.0-py35-none-any.whl (317.2 kB view details)

Uploaded Python 3.5

uncompyle6-3.8.0-py34-none-any.whl (317.2 kB view details)

Uploaded Python 3.4

uncompyle6-3.8.0-py33-none-any.whl (311.7 kB view details)

Uploaded Python 3.3

uncompyle6-3.8.0-py3.10.egg (622.6 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py3.9.egg (618.5 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py3.8.egg (619.6 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py3.7.egg (618.1 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py3.6.egg (621.5 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py3.5.egg (630.7 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py3.4.egg (634.1 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py3.3.egg (640.3 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py2.7.egg (621.6 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py2.6.egg (622.9 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py2.5.egg (623.5 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py2.4.egg (629.3 kB view details)

Uploaded Egg

uncompyle6-3.8.0-py2-none-any.whl (317.4 kB view details)

Uploaded Python 2

File details

Details for the file uncompyle6-3.8.0.tar.gz.

File metadata

  • Download URL: uncompyle6-3.8.0.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0.tar.gz
Algorithm Hash digest
SHA256 620633618f6dfc1f3e78187e220934d78ffc639c0e39daeca1fc535aab817014
MD5 459b1f3686b95e248aaa617c04858b4a
BLAKE2b-256 9c7bddd97b387bd4c82b9ea8f794ac452439155774d1be9303a52704a500c718

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py310-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py310-none-any.whl
  • Upload date:
  • Size: 317.4 kB
  • Tags: Python 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py310-none-any.whl
Algorithm Hash digest
SHA256 157261cb0b0cc91691d3795c375ea35c0d105c83ee4493ef6194f8db703c3052
MD5 b3cae433e967e0459492e7618ccecd16
BLAKE2b-256 66c122de22b1fca541017196bc18e1423423d36caa34cc0ed70f3b946f713cf2

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py39-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py39-none-any.whl
  • Upload date:
  • Size: 317.4 kB
  • Tags: Python 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py39-none-any.whl
Algorithm Hash digest
SHA256 c8f3efea49f38d1f5c9cc1cc4771df68c96beca7df1ac6f8251eda73fc63c38b
MD5 37ae97ede6f2eff4daa2f6c3a8b196a1
BLAKE2b-256 ee4a0edab259501163403feb0ade7fce362bf9fc73b572a11e1050190a34f89e

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py38-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py38-none-any.whl
  • Upload date:
  • Size: 317.4 kB
  • Tags: Python 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py38-none-any.whl
Algorithm Hash digest
SHA256 1b99fd5634baadaeb4ed4fe9b724ae056b5a2a62ee94d143425c8bfc7e7ee869
MD5 bc655872286ce09de4aca922cfe1047b
BLAKE2b-256 c6ee09e0be0e0012b1e764a11114bd830c1dcfffbe6ebb7017e11e26639c5fa3

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py37-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py37-none-any.whl
  • Upload date:
  • Size: 317.4 kB
  • Tags: Python 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py37-none-any.whl
Algorithm Hash digest
SHA256 368f0efc3c41f0415a19e9cceee2311fb08899ab765a2113471be03a6857127e
MD5 770bf4a4fc40b3945ab909d33648fd8f
BLAKE2b-256 51a8e0bb43247146ea589397930afd6052ef4ce09044c6969eb29087be2c50ac

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py36-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py36-none-any.whl
  • Upload date:
  • Size: 317.4 kB
  • Tags: Python 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py36-none-any.whl
Algorithm Hash digest
SHA256 2792b10d5ef1fe15aaf8a6240a9fd38934bdf9648362367f5bbefa87eb1525e2
MD5 1d60715bd8c19a7dcea09195d6a42c09
BLAKE2b-256 ac34839fadac06276f8a3aafc9a8dc8ee02726812d167894d93869e897a5280c

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py35-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py35-none-any.whl
  • Upload date:
  • Size: 317.2 kB
  • Tags: Python 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py35-none-any.whl
Algorithm Hash digest
SHA256 7017cda7b9f1e8123899a7b7eda9a555c0ea2c7dfc7805322e7b87b3b36504e5
MD5 6a72a6927457d48e28021e248d0aad74
BLAKE2b-256 7fe0885b10a5ff08e03435457b0bac2e182f2ed46c585eefe45155b93fad8dda

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py34-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py34-none-any.whl
  • Upload date:
  • Size: 317.2 kB
  • Tags: Python 3.4
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py34-none-any.whl
Algorithm Hash digest
SHA256 a1cfd8add1e38779033dcee245f03e0c9187a75b71d83b0200a1cc1b1bc5d535
MD5 939445f857da869c0ac209a37bb61c39
BLAKE2b-256 06bd654cb4d84380a5c4e324722db259c3bde81716d8ce10a58dff13cdd3ec40

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py33-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py33-none-any.whl
  • Upload date:
  • Size: 311.7 kB
  • Tags: Python 3.3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py33-none-any.whl
Algorithm Hash digest
SHA256 e0f57660972ef11a4c1da5d23ac0fe19f8ab73b73065d2a0200d71df8580dfc9
MD5 08c2e9c5bdac0ecf6966ed6f221d0e5d
BLAKE2b-256 3dffa3a4ac7f43c55a926f3e14bf70fbda60d0df051762495c3e00ba580e13f8

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.10.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.10.egg
  • Upload date:
  • Size: 622.6 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.10.egg
Algorithm Hash digest
SHA256 4599d12287443e8a196c954bf73c1e5bbec2443c58ec53c7765a9420e109982e
MD5 23900a22cc46354293f7c8b357bed604
BLAKE2b-256 27b591d7de8c54d572520d773c4a3c99f713589d9c327dcd5f418cde2286b0c9

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.9.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.9.egg
  • Upload date:
  • Size: 618.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.9.egg
Algorithm Hash digest
SHA256 30e22ca70f5472edfb1d4abf35432cf381a54c2038ad78dded67af4d6fddb2a4
MD5 323fcb6ade1bdd6e2a2ddae6b7dfb6a5
BLAKE2b-256 32b50e14f1488ccba8133b69d990295c9ea025a16fb4f9bc5ba19d99cd5f1368

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.8.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.8.egg
  • Upload date:
  • Size: 619.6 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.8.egg
Algorithm Hash digest
SHA256 908288909814f483b4c0e28a55ff112652692bd7af3dea281c0709474c8ffbc6
MD5 c65522770a032f7f7cd459b0f660f77c
BLAKE2b-256 02cb6d25201d9417ea2b22ac5d03c493c40ca315cb7f5c807cce3119f0922652

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.7.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.7.egg
  • Upload date:
  • Size: 618.1 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.7.egg
Algorithm Hash digest
SHA256 cff54bcfaddc58812205591e710355646714dd08e9275bb7f0b76b41943d0a09
MD5 3b4b65c6e6a86a04195c2c74afac062a
BLAKE2b-256 e1e791984ed9a0bcfce79a36bfc214e44e952fe42939a94daa308be592657767

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.6.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.6.egg
  • Upload date:
  • Size: 621.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.6.egg
Algorithm Hash digest
SHA256 17293ccbfdfb312f2c57a471b743e15b1f3c3d82e35f53c4c818beecaaf746ce
MD5 69742affdb3d33584fbe47e204893cb6
BLAKE2b-256 afeed0cde632bcb1b5e84a62dc9cdc1c579ed62fa5c0599513a95ec50786a6de

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.5.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.5.egg
  • Upload date:
  • Size: 630.7 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.5.egg
Algorithm Hash digest
SHA256 a8c0081074802e923b6220c0c2bd25f0011fe72ba3344bbc834fa700f870b93a
MD5 af261169da0f363adaf976a90aa6bc3d
BLAKE2b-256 109e2ef84a926c70156bcf56e91422d825179b43476a8f3f918a095e10a94003

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.4.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.4.egg
  • Upload date:
  • Size: 634.1 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.4.egg
Algorithm Hash digest
SHA256 fa9a920328bb2963ed9ed3c7dc517aeea0ac49a9ef2aed7daf7349a4f2af4645
MD5 7202971e08ad2522a8fabc781fcb1817
BLAKE2b-256 41fee1a8188a6ced562601645c0a6f63d66800407fc33d1077f641822171dfd2

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py3.3.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py3.3.egg
  • Upload date:
  • Size: 640.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py3.3.egg
Algorithm Hash digest
SHA256 ab6507d506268942d4e26b903191c173da39751ef6c2019eeea71d458bdfc257
MD5 3ff1fe3a781e6dc728a430593e823161
BLAKE2b-256 571b97136a5af7b4f5ea0fcdfa729547fefbd14f54d8918cf2ab49014dc40606

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py2.7.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py2.7.egg
  • Upload date:
  • Size: 621.6 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py2.7.egg
Algorithm Hash digest
SHA256 1dabbb4278865a2c35ad14d1703ad0dba8c0d32405212d5b9acbff8cbb66b5b4
MD5 b1e56959f68d745ea45e0f6a85336b32
BLAKE2b-256 fa7bfa8be77c45f09d94aa720f195e14587a3f9a92c2c63e43d505847ef95c09

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py2.6.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py2.6.egg
  • Upload date:
  • Size: 622.9 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py2.6.egg
Algorithm Hash digest
SHA256 2528a0d6c76dde99dc2e4b3b3c0850e8f1f215e12b14c0e15dbeb2e90e76bc58
MD5 2944aaefdddcca39e16f2dd9d7400532
BLAKE2b-256 a114f702c29f96713a7b3f5577c0c13f72fdb992606c32f95d2ee9678f9a8b31

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py2.5.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py2.5.egg
  • Upload date:
  • Size: 623.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py2.5.egg
Algorithm Hash digest
SHA256 18d731af7cf6f4d92ccbe2c787b4b0421d927b148b6d4cee7de3e9dd8bea2a57
MD5 55987ada2b791ce420c0b3673cb17524
BLAKE2b-256 24b8c91d9821887eb929f94ccf9455e8c60b5d081e89b7b7735e610e65e43df5

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py2.4.egg.

File metadata

  • Download URL: uncompyle6-3.8.0-py2.4.egg
  • Upload date:
  • Size: 629.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py2.4.egg
Algorithm Hash digest
SHA256 e8f0caaf73b71b8336ab3d1cfa8a8fe5adcdc61339d885fe8266758694bc9039
MD5 fcc3e5eb6a75359bce383cb010932c1d
BLAKE2b-256 32fc87ca544a4b99e3cc6b684fa92011335a03359f42a16e404c09451128b5b3

See more details on using hashes here.

File details

Details for the file uncompyle6-3.8.0-py2-none-any.whl.

File metadata

  • Download URL: uncompyle6-3.8.0-py2-none-any.whl
  • Upload date:
  • Size: 317.4 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for uncompyle6-3.8.0-py2-none-any.whl
Algorithm Hash digest
SHA256 0314d5558a15a47d00e61b88cc1b7631717de3edc19262643ed3b581ab910396
MD5 4f51a464e7b4220ba22364cbc2cdc2b4
BLAKE2b-256 a3e6448547aa5f758cd3aff3a32b6d10ff7a5718d998e4388d32ad3b59deda99

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page