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
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,16 @@ pip install python-obfuscator
18
18
19
19
## Quickstart
20
20
21
-
Print out obfuscated code
21
+
By default, obfuscated code is written under an **`obfuscated/`** directory (created next to your current working directory). Paths under the current directory are preserved (e.g. `src/app.py` → `obfuscated/src/app.py`).
22
+
22
23
```
23
24
pyobfuscate -i your_file.py
24
25
```
25
26
26
-
Apply changes to the input file
27
+
Print to stdout instead (e.g. for piping):
28
+
27
29
```
28
-
pyobfuscate -i your_file.py -r True
30
+
pyobfuscate -i your_file.py --stdout
29
31
```
30
32
31
33
## More Detailed Documentation
@@ -62,7 +64,7 @@ print("{} that's a great number!".format(user_value))
0 commit comments