binaryninja.interaction.show_plain_text_report

show_plain_text_report(title, contents)[source]

show_plain_text_report displays contents to the user in the UI or on the command-line.

Note: This API function differently on the command-line vs the UI. In the UI a pop-up is used. On the command-line
a simple text prompt is used.
Parameters:
  • title (str) – title to display in the UI pop-up.
  • contents (str) – plaintext contents to display
Return type:

None

Example:
>>> show_plain_text_report("title", "contents")
contents