File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ Pyarmor 工程
157
157
- 需要
158
158
- 不可逆程度较低,但是执行速度较高,适用于 Web 服务等类型
159
159
* - 重构型
160
- - 最低
160
+ - 较高
161
161
- 最高
162
162
- 不需要
163
163
- 和普通 Python 脚本完全一样,主要是对 Python 语句进行了重构,所以不需要额外的扩展模块,适用范围更广,包括用于 WASM,也可以继续使用任意工具,例如 Nuitka,Cython 等进一步处理
@@ -178,13 +178,13 @@ Pyarmor 工程
178
178
179
179
例如,一个 Python 脚本 `foo.py `
180
180
181
- .. code :: python
181
+ .. code-block :: python
182
182
183
183
print (' Hello' )
184
184
185
185
使用 Pyarmor 生成迷你型加密脚本之后,输出的 `dist/foo.py ` 内容如下
186
186
187
- .. code :: python
187
+ .. code-block :: python
188
188
189
189
from pyarmor_mini import __pyarmor__
190
190
__pyarmor__(__name__ , b ' xxxx' )
@@ -204,15 +204,15 @@ Pyarmor 工程
204
204
205
205
例如,一个 Python 脚本 `foo.py `
206
206
207
- .. code :: python
207
+ .. code-block :: python
208
208
:linenos:
209
209
210
210
msg = ' Hello'
211
211
print (msg)
212
212
213
213
使用 Pyarmor 生成重构型加密脚本之后,输出的 `dist/foo.py ` 内容如下
214
214
215
- .. code :: python
215
+ .. code-block :: python
216
216
:linenos:
217
217
218
218
pyarmor__1 = ' Hello'
Original file line number Diff line number Diff line change 17
17
node [shape=box, style=rounded]
18
18
19
19
c1 [label="Pyarmor 命令行工具"
20
- href="concepts.html#pyarmor-cli"]
20
+ href="concepts.html#pyarmor-cli"
21
+ target="_top"]
21
22
c2 [label="Pyarmor 许可证"
22
- href="https://pyarmor.readthedocs.io/zh/latest/licenses.html"]
23
+ href="https://pyarmor.readthedocs.io/zh/latest/licenses.html"
24
+ target="_top"]
23
25
c3 [label="Pyarmor 工程"
24
- href="concepts.html#project"]
26
+ href="concepts.html#project"
27
+ target="_top"]
25
28
c4 [label="Python 脚本", shape=plaintext]
26
29
c5 [label="加密脚本"
27
- href="concepts.html#obf-scripts"]
30
+ href="concepts.html#obf-scripts"
31
+ target="_top"]
28
32
29
33
c4 -> c3 [arrowhead=tee, label="组成"]
30
34
rank=same {c3 -> c1}
You can’t perform that action at this time.
0 commit comments