This repository was archived by the owner on Jul 13, 2024. It is now read-only.
File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ PyDelta is a Python obfuscator script designed to obfuscate Python source code,
11
11
* String Encryption: Encrypts strings within the code to prevent easy extraction of sensitive information.
12
12
* Inline Imports: Converts imports to inline imports to reduce readability.
13
13
* Name Refactoring: Refactors variable, function and arguments identifiers to further obfuscate the code.
14
+ * Code Compilation: Uses Nuitka to compile code to an executable.
14
15
15
16
<br >
16
17
@@ -43,13 +44,16 @@ Or you can simply run the `pydelta-obfuscate` command.
43
44
* compress_encrypt: Whether to compress and encrypt the entire code (default: True).
44
45
* str_encryption_amount: Number of times to encrypt strings (default: 3).
45
46
* compress_encrypt_amount: Number of times to compress and encrypt the code (default: 30).
47
+ * compile_code: Whether to compile your code or not. (default: False).
48
+
46
49
47
50
### CLI Arguments:
48
51
* no_add_anti_dbg
49
52
* no_inline_imports
50
53
* no_refactor_names
51
54
* no_encrypt_str
52
55
* no_compress_encrypt
56
+ * code_compile
53
57
* str_encryption_amount: Number of times to encrypt strings (default: 3).
54
58
* compress_encrypt_amount: Number of times to compress and encrypt the code (default: 30).
55
59
You can’t perform that action at this time.
0 commit comments