Clash
linux 使用 clash GUI
clash_for_windows_linux
Tap 模式
| |
clash service
| |
archlinux 路径
Chemistry
名词
Cython Notes
教程
官方 Tutorial
编译单个文件
制作 setup.py
1 2 3 4 5 6from setuptools import setup from Cython.Build import cythonize setup( ext_modules = cythonize("helloworld.pyx") )- 这里假设我们要处理的脚本是 helloworld.pyx
命令行执行
1python setup.py build_ext --inplace
obfuscation ---- python 代码混淆
工具
- pyminifier
pyarmor
可以与 pyinstaller 一起使用
- 低层调用 pyinstaller 打包
更多
- GitHub - 0sir1ss/Anubis: A Python script to obfuscate and protect your code t…
Carbon: GitHub - 0sir1ss/Carbon: A Python script to obfuscate and protect your code b…
- 删除 comment
- 重命名 class, variables, functions, parameters