billythegoat356 / Apollyon

One of the best Python3.9 obfuscators.
Eclipse Public License 2.0
94 stars 8 forks source link

[enhancement] 3.9+ #2

Open therealOri opened 2 years ago

therealOri commented 2 years ago

Add support for python versions 3.9+ instead of JUST 3.9. Not everyone wants to downgrade their python version just to be able to run their code.

billythegoat356 commented 2 years ago

Then it would be necessary to have more PYD files. The actual PYD supports only Python3.9.

therealOri commented 2 years ago

Then it would be necessary to have more PYD files. The actual PYD supports only Python3.9.

Well shit. Guess we gotta wait until PYD it supports 3.9+?

billythegoat356 commented 2 years ago

No, I mean, it does. A PYD file only works with the Python version it was compiled with. For example: if I compile it with Python3.8, it will work ONLY for Python3.8.

therealOri commented 2 years ago

No, I mean, it does. A PYD file only works with the Python version it was compiled with. For example: if I compile it with Python3.8, it will work ONLY for Python3.8.

Ah, in that case, compile multiple versions and store them, check what version of python is being used and then use the version that the user has? Or have the user decided what version of python to use according to what you have compiled, etc.