You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have some custom remote scripts, but they are currently broken after the upgrade to 12.1. It seems that Ableton have upgraded their Python version to 3.11.6. I used to be able to decompile the *.pyc files myself, using uncompyle6 or decompyle3, but they do not support version 3.11.
Does anyone know of a decompiler that supports 3.11? I tried https://github.com/zrax/pycdc, but that one is still missing quite a few essential opcodes.
The text was updated successfully, but these errors were encountered:
OK i have a workaround, I found this online decompiler: https://pylingual.io/
It does the trick, I only needed to decompile a couple of files, so this wil work, but for a complete decompilation of a lot of files, as in this repo, it won't be suitable (yet).
Live 12.1 switched to python 3.11, which is currently impractical to
decompile. See
gluon/AbletonLive12_MIDIRemoteScripts#2 for
more discussion.
`pycdc` does decompile some basic structural elements of the Live
libraries, but outputs mostly empty function and class definitions.
https://pylingual.io/ seems to work better but isn't currently possible
to integrate in an automated way.
This PR adds https://github.com/gluon/AbletonLive12_MIDIRemoteScripts
(currently not updated for 12.1 but seems to work fine for our use
cases) as a submodule and sets it up for use with the typechecker.
Hi, I have some custom remote scripts, but they are currently broken after the upgrade to 12.1. It seems that Ableton have upgraded their Python version to 3.11.6. I used to be able to decompile the *.pyc files myself, using uncompyle6 or decompyle3, but they do not support version 3.11.
Does anyone know of a decompiler that supports 3.11? I tried https://github.com/zrax/pycdc, but that one is still missing quite a few essential opcodes.
The text was updated successfully, but these errors were encountered: