[UNMAINTAINED] A Python script to obfuscate and protect your code by renaming classes, functions, variables and remove comments and docstrings.
93
stars
11
forks
source link
Improperly renames function parameters #3
Open
deeplearnerali opened 2 years ago
We have the original code here:
def add(x: int, y: int) -> None: print(f"{x:,} + {y:,} = {(x+y):,}") add(10, 10)
after obfuscation
` def lIIlllIIIlIllI(llIIlllIllIl: int, IllIIIlIllIl: int) -> None: print(f"{x:,} + {y:,} = {(llIIlllIllIl+IllIIIlIllIl):,}") lIIlllIIIlIllI(10, 10)
`