Skip to main content

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 files for uncompyle6 3.8.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for uncompyle6 3.8.0
File Size Uploaded
uncompyle6-3.8.0.tar.gz 2.5 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for uncompyle6 3.8.0
File
uncompyle6-3.8.0-py310-none-any.whl Python 3.10 none any Details
uncompyle6-3.8.0-py39-none-any.whl Python 3.9 none any Details
uncompyle6-3.8.0-py38-none-any.whl Python 3.8 none any Details
uncompyle6-3.8.0-py37-none-any.whl Python 3.7 none any Details
uncompyle6-3.8.0-py36-none-any.whl Python 3.6 none any Details
uncompyle6-3.8.0-py35-none-any.whl Python 3.5 none any Details
uncompyle6-3.8.0-py34-none-any.whl Python 3.4 none any Details
uncompyle6-3.8.0-py33-none-any.whl Python 3.3 none any Details
uncompyle6-3.8.0-py3.10.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py3.9.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py3.8.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py3.7.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py3.6.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py3.5.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py3.4.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py3.3.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py2.7.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py2.6.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py2.5.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py2.4.egg Legacy Egg format - - Details
uncompyle6-3.8.0-py2-none-any.whl Python 2 none any Details

Total release size:12.8 MB

Release files / uncompyle6-3.8.0.tar.gz

Download URL uncompyle6-3.8.0.tar.gz
Size 2.5 MB
Tags Source
SHA-256 checksum
How to use checksums
620633618f6dfc1f3e78187e220934d78ffc639c0e39daeca1fc535aab817014
BLAKE2b-256 checksum
How to use checksums
9c7bddd97b387bd4c82b9ea8f794ac452439155774d1be9303a52704a500c718
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py310-none-any.whl

Download URL uncompyle6-3.8.0-py310-none-any.whl
Size 317.4 kB
Tags Python 3.10
SHA-256 checksum
How to use checksums
157261cb0b0cc91691d3795c375ea35c0d105c83ee4493ef6194f8db703c3052
BLAKE2b-256 checksum
How to use checksums
66c122de22b1fca541017196bc18e1423423d36caa34cc0ed70f3b946f713cf2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py39-none-any.whl

Download URL uncompyle6-3.8.0-py39-none-any.whl
Size 317.4 kB
Tags Python 3.9
SHA-256 checksum
How to use checksums
c8f3efea49f38d1f5c9cc1cc4771df68c96beca7df1ac6f8251eda73fc63c38b
BLAKE2b-256 checksum
How to use checksums
ee4a0edab259501163403feb0ade7fce362bf9fc73b572a11e1050190a34f89e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py38-none-any.whl

Download URL uncompyle6-3.8.0-py38-none-any.whl
Size 317.4 kB
Tags Python 3.8
SHA-256 checksum
How to use checksums
1b99fd5634baadaeb4ed4fe9b724ae056b5a2a62ee94d143425c8bfc7e7ee869
BLAKE2b-256 checksum
How to use checksums
c6ee09e0be0e0012b1e764a11114bd830c1dcfffbe6ebb7017e11e26639c5fa3
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py37-none-any.whl

Download URL uncompyle6-3.8.0-py37-none-any.whl
Size 317.4 kB
Tags Python 3.7
SHA-256 checksum
How to use checksums
368f0efc3c41f0415a19e9cceee2311fb08899ab765a2113471be03a6857127e
BLAKE2b-256 checksum
How to use checksums
51a8e0bb43247146ea589397930afd6052ef4ce09044c6969eb29087be2c50ac
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py36-none-any.whl

Download URL uncompyle6-3.8.0-py36-none-any.whl
Size 317.4 kB
Tags Python 3.6
SHA-256 checksum
How to use checksums
2792b10d5ef1fe15aaf8a6240a9fd38934bdf9648362367f5bbefa87eb1525e2
BLAKE2b-256 checksum
How to use checksums
ac34839fadac06276f8a3aafc9a8dc8ee02726812d167894d93869e897a5280c
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py35-none-any.whl

Download URL uncompyle6-3.8.0-py35-none-any.whl
Size 317.2 kB
Tags Python 3.5
SHA-256 checksum
How to use checksums
7017cda7b9f1e8123899a7b7eda9a555c0ea2c7dfc7805322e7b87b3b36504e5
BLAKE2b-256 checksum
How to use checksums
7fe0885b10a5ff08e03435457b0bac2e182f2ed46c585eefe45155b93fad8dda
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py34-none-any.whl

Download URL uncompyle6-3.8.0-py34-none-any.whl
Size 317.2 kB
Tags Python 3.4
SHA-256 checksum
How to use checksums
a1cfd8add1e38779033dcee245f03e0c9187a75b71d83b0200a1cc1b1bc5d535
BLAKE2b-256 checksum
How to use checksums
06bd654cb4d84380a5c4e324722db259c3bde81716d8ce10a58dff13cdd3ec40
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py33-none-any.whl

Download URL uncompyle6-3.8.0-py33-none-any.whl
Size 311.7 kB
Tags Python 3.3
SHA-256 checksum
How to use checksums
e0f57660972ef11a4c1da5d23ac0fe19f8ab73b73065d2a0200d71df8580dfc9
BLAKE2b-256 checksum
How to use checksums
3dffa3a4ac7f43c55a926f3e14bf70fbda60d0df051762495c3e00ba580e13f8
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.10.egg

Download URL uncompyle6-3.8.0-py3.10.egg
Size 622.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
4599d12287443e8a196c954bf73c1e5bbec2443c58ec53c7765a9420e109982e
BLAKE2b-256 checksum
How to use checksums
27b591d7de8c54d572520d773c4a3c99f713589d9c327dcd5f418cde2286b0c9
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.9.egg

Download URL uncompyle6-3.8.0-py3.9.egg
Size 618.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
30e22ca70f5472edfb1d4abf35432cf381a54c2038ad78dded67af4d6fddb2a4
BLAKE2b-256 checksum
How to use checksums
32b50e14f1488ccba8133b69d990295c9ea025a16fb4f9bc5ba19d99cd5f1368
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.8.egg

Download URL uncompyle6-3.8.0-py3.8.egg
Size 619.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
908288909814f483b4c0e28a55ff112652692bd7af3dea281c0709474c8ffbc6
BLAKE2b-256 checksum
How to use checksums
02cb6d25201d9417ea2b22ac5d03c493c40ca315cb7f5c807cce3119f0922652
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.7.egg

Download URL uncompyle6-3.8.0-py3.7.egg
Size 618.1 kB
Tags Egg
SHA-256 checksum
How to use checksums
cff54bcfaddc58812205591e710355646714dd08e9275bb7f0b76b41943d0a09
BLAKE2b-256 checksum
How to use checksums
e1e791984ed9a0bcfce79a36bfc214e44e952fe42939a94daa308be592657767
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.6.egg

Download URL uncompyle6-3.8.0-py3.6.egg
Size 621.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
17293ccbfdfb312f2c57a471b743e15b1f3c3d82e35f53c4c818beecaaf746ce
BLAKE2b-256 checksum
How to use checksums
afeed0cde632bcb1b5e84a62dc9cdc1c579ed62fa5c0599513a95ec50786a6de
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.5.egg

Download URL uncompyle6-3.8.0-py3.5.egg
Size 630.7 kB
Tags Egg
SHA-256 checksum
How to use checksums
a8c0081074802e923b6220c0c2bd25f0011fe72ba3344bbc834fa700f870b93a
BLAKE2b-256 checksum
How to use checksums
109e2ef84a926c70156bcf56e91422d825179b43476a8f3f918a095e10a94003
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.4.egg

Download URL uncompyle6-3.8.0-py3.4.egg
Size 634.1 kB
Tags Egg
SHA-256 checksum
How to use checksums
fa9a920328bb2963ed9ed3c7dc517aeea0ac49a9ef2aed7daf7349a4f2af4645
BLAKE2b-256 checksum
How to use checksums
41fee1a8188a6ced562601645c0a6f63d66800407fc33d1077f641822171dfd2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py3.3.egg

Download URL uncompyle6-3.8.0-py3.3.egg
Size 640.3 kB
Tags Egg
SHA-256 checksum
How to use checksums
ab6507d506268942d4e26b903191c173da39751ef6c2019eeea71d458bdfc257
BLAKE2b-256 checksum
How to use checksums
571b97136a5af7b4f5ea0fcdfa729547fefbd14f54d8918cf2ab49014dc40606
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py2.7.egg

Download URL uncompyle6-3.8.0-py2.7.egg
Size 621.6 kB
Tags Egg
SHA-256 checksum
How to use checksums
1dabbb4278865a2c35ad14d1703ad0dba8c0d32405212d5b9acbff8cbb66b5b4
BLAKE2b-256 checksum
How to use checksums
fa7bfa8be77c45f09d94aa720f195e14587a3f9a92c2c63e43d505847ef95c09
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py2.6.egg

Download URL uncompyle6-3.8.0-py2.6.egg
Size 622.9 kB
Tags Egg
SHA-256 checksum
How to use checksums
2528a0d6c76dde99dc2e4b3b3c0850e8f1f215e12b14c0e15dbeb2e90e76bc58
BLAKE2b-256 checksum
How to use checksums
a114f702c29f96713a7b3f5577c0c13f72fdb992606c32f95d2ee9678f9a8b31
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py2.5.egg

Download URL uncompyle6-3.8.0-py2.5.egg
Size 623.5 kB
Tags Egg
SHA-256 checksum
How to use checksums
18d731af7cf6f4d92ccbe2c787b4b0421d927b148b6d4cee7de3e9dd8bea2a57
BLAKE2b-256 checksum
How to use checksums
24b8c91d9821887eb929f94ccf9455e8c60b5d081e89b7b7735e610e65e43df5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py2.4.egg

Download URL uncompyle6-3.8.0-py2.4.egg
Size 629.3 kB
Tags Egg
SHA-256 checksum
How to use checksums
e8f0caaf73b71b8336ab3d1cfa8a8fe5adcdc61339d885fe8266758694bc9039
BLAKE2b-256 checksum
How to use checksums
32fc87ca544a4b99e3cc6b684fa92011335a03359f42a16e404c09451128b5b3
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / uncompyle6-3.8.0-py2-none-any.whl

Download URL uncompyle6-3.8.0-py2-none-any.whl
Size 317.4 kB
Tags Python 2
SHA-256 checksum
How to use checksums
0314d5558a15a47d00e61b88cc1b7631717de3edc19262643ed3b581ab910396
BLAKE2b-256 checksum
How to use checksums
a3e6448547aa5f758cd3aff3a32b6d10ff7a5718d998e4388d32ad3b59deda99
Upload date
Uploaded using Trusted Publishing?
What is 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

Release history Release notifications | RSS feed

3.9.3

5 release files

3.9.2

3 release files

3.9.1

3 release files

3.9.0

18 release files

This release

3.8.0 This release

22 release files

3.7.3

14 release files

3.7.2

14 release files

3.7.1

14 release files

3.7.0

14 release files

3.6.7

13 release files

3.6.6

14 release files

3.6.3

13 release files

3.6.1

15 release files

3.6.0

13 release files

3.5.1

13 release files

3.5.0

13 release files

3.4.0

11 release files

3.3.4

15 release files

3.3.3

14 release files

3.3.1

17 release files

3.3.0

20 release files

3.2.6

13 release files

3.2.5

11 release files

3.2.4

19 release files

3.2.3

15 release files

3.2.2

17 release files

3.2.0

13 release files

3.1.3

4 release files

3.1.0

10 release files

2.13.1

8 release files

2.13.0

8 release files

2.12.0

9 release files

2.11.5

7 release files

2.11.4

8 release files

2.11.3

9 release files

2.11.1

8 release files

2.11.0

7 release files

2.10.0

6 release files

2.9.10

8 release files

2.9.9

9 release files

2.9.8

10 release files

2.9.7

7 release files

2.9.6

6 release files

2.9.5

6 release files

2.9.4

6 release files

2.9.3

5 release files

2.8.4

6 release files

2.8.3

6 release files

2.8.2

4 release files

2.8.1

6 release files

2.8.0

6 release files

2.7.1

6 release files

2.7.0

6 release files

2.6.2

5 release files

2.6.1

6 release files

2.6.0

6 release files

2.5.0

5 release files

2.4.0

7 release files

2.3.6

6 release files

2.3.5

2.3.4

7 release files

2.3.3

6 release files

2.3.2

6 release files

2.3.1

6 release files

2.3.0

6 release files

2.2.0

8 release files

2.1.3

5 release files

2.1.2

5 release files

2.1.1

5 release files

2.1.0

5 release files

2.0.0

6 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page