mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
16 lines
614 B
Python
16 lines
614 B
Python
#---------------------------------------------------------------------
|
|
# Example user initialisation script: idapythonrc.py
|
|
#
|
|
# Place this script to ~/.idapro/ or to
|
|
# C:\Documents and Settings\%USER%\Application Data\Hex-Rays\IDA Pro
|
|
#---------------------------------------------------------------------
|
|
|
|
# Add your favourite script to ScriptBox for easy access
|
|
# scriptbox.addscript("/here/is/my/favourite/script.py")
|
|
|
|
# Uncomment if you want to set Python as default interpreter in IDA
|
|
# idaapi.enable_extlang_python(True)
|
|
|
|
# Disable the Python from interactive command-line
|
|
# idaapi.enable_python_cli(False)
|