Skip to content

pythonthings/pyarmor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

973 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pyarmor

Pyarmor is a command line tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts. It protects Python scripts by the following ways:

  • Obfuscate code object to protect constants and literal strings.
  • Obfuscate byte code of each code object in runtime.
  • Clear f_locals of frame as soon as code object completed execution.
  • Verify the license file of obfuscated scripts while running it.

Refer to Protect Python Scripts By Pyarmor

Support Platforms

  • Python 2.5, 2.6, 2.7 and Python3
  • Prebuilt Platform: win32, win_amd64, linux_i386, linux_x86_64, macosx_x86_64
  • Embedded Platform: Raspberry Pi, Banana Pi, TS-4600 / TS-7600

Quick Start

Installation

pip install pyarmor

Obfuscate scripts

pyarmor obfuscate --recursive --src=examples/simple --entry=queens.py

Run obfuscated scripts

cd dist
python queens.py

Pack obfuscated scripts with py2exe, cx_Freeze etc.

pyarmor pack -t py2exe examples/py2exe/hello.py

Generate an expired license and run obfuscated scripts with new license

pyarmor licenses --expired 2018-12-31 Customer-Jondy
cp licenses/Customer-Jondy/license.lic dist/

cd dist/
python queens.py

Start webui, open web page in browser for basic usage of Pyarmor

pyarmor-webui

More usage, refer to Examples, User Guide

License

Pyarmor is published as shareware. Free trial version never expires, the limitation is

  • Project Capsule generated by trial version is NOT random, but FIXED by hardcode.

A registration code is required to generate random project capsule.

  • Personal user: one registration code is enough.
  • Company user: one registration code is only used for one project/product.

For details, refer to LICENSE.

Purchase

Click Purchase,

A registration code will be sent to your immediately after payment is completed successfully.

After you receive the email which includes registration code, copy registration code only (no newline), then replace the content of "license.lic" with it.

Check License

pyarmor --version

The registration code is valid forever, it can be used permanently.

Any question feel free email to jondy.zhao@gmail.com, or click here to report an issue

About

A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts.

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE-ZH

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 78.7%
  • Shell 19.3%
  • Batchfile 1.5%
  • Other 0.5%