en-US/about_PythonObfuscator.help.txt

TOPIC
    about_PythonObfuscator
 
SHORT DESCRIPTION
    PowerShell Web API client for Python Obfuscator.
 
LONG DESCRIPTION
    PythonObfuscator talks to https://www.pelock.com/api/python-obfuscator/v1
    and exposes the same client surface as the Python SDK.
 
    Import the module, then either:
 
        using module PythonObfuscator
        $client = [PythonObfuscator]::new('YOUR-KEY')
 
    or:
 
        Import-Module PythonObfuscator
        $client = New-PythonObfuscator -ApiKey 'YOUR-KEY'
 
    Empty or invalid keys run demo mode: strategy flags are ignored and the
    service always applies integers_to_arrays, mba_binops, and encrypt_strings
    (no virtualization; 1000 character limit).
 
    Project page: https://www.pelock.com/products/python-obfuscator
 
SEE ALSO
    New-PythonObfuscator