pyobfuscate icon indicating copy to clipboard operation
pyobfuscate copied to clipboard

pyobfuscate

Results 20 pyobfuscate issues
Sort by recently updated
recently updated
newest added

Pyobfuscate throws an error when code contains type hints in method declarations. `RuntimeError: Overlooked symbol 'list' on line 70 column 40` Eg. def some_method(users: list): pass

![image](https://user-images.githubusercontent.com/58229141/130002185-7e35581a-cab1-43f9-ab38-8dbcc2e35fcd.png) ![image](https://user-images.githubusercontent.com/58229141/130002241-e0f6d8e7-1e34-4813-89a6-81e434296123.png) env :python 3.6.5, library in context:pandas(css) I know that css is newly for the add of pandas. May the author will have the time to experience the example...

Hi, I have Python 3.7.7 and I get this error message when I run copy: ``` Traceback (most recent call last): File "opy.py", line 537, in main () File "opy.py",...

Ticket inspired by http://stackoverflow.com/questions/43600414/error-errno-1-operation-not-permitted-usr-bin-pyobfuscate-macos-sierra/43600504 --- The `setup.py` for pyobfuscate treats the executable as data. This bypasses several desirable behaviors: - In general, distutils will honor `--prefix`, `--exec-prefix`, or to try...

error: charset=re.compile(b']_charset=[\'\"]_?([a-z0-8-]+)[\'\"]?[^>]_?>',re.IGNORECASE).findall(html) correct: charset=re.compile(r']_charset=[\'\"]_?([a-z0-8-]+)[\'\"]?[^>]_?>',re.IGNORECASE).findall(html)

I did a clean install following this: https://www.smallsurething.com/category/obfuscation/ then tried to obfuscate file, but recive error: [root@mikkm ~]# pyobfuscate init.py Traceback (most recent call last): File "/usr/bin/pyobfuscate", line 1188, in...

Hello, I am trying pyobfuscate for encrypting my file. File contains below code piece in which pyobfuscate raise error: File "/usr/bin/pyobfuscate", line 841, in parse raise RuntimeError("Overlooked symbol '%s' on...

Dear Author, With sincere appreciation, Is it possible to provide simple documentation on how to use this tool. I have a.py to be obfuscated. What steps I need follow. pyobfuscate...

I want to use this project, but in my code, there are lots of list comprehension and decorator, It fails to obfuscate, and I find that there are alreay issues...