mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
1.3 KiB
1.3 KiB
IDAPython examples
% for category in sorted(examples):
Category: {{category}}
% for example in sorted(examples[category], key=lambda e: e.name):
{{example.name}}
{{example.summary}}
Source code
Category
{{example.category}}
Description
{{example.description if example.description else example.summary}}
% if example.shortcuts:Shortcut{{'s' if len(example.shortcuts) > 1 else ''}}
{{' '.join(example.shortcuts)}}
% endif % if example.keywords:Keywords
{{' '.join(example.keywords)}}
% endif % if example.imports:Imports
% for imported in example.imports:
{{imported}} % endfor
% endif % if example.uses:
Uses
% for use in example.uses:
{{use}} % endfor
% endif % if example.see_also:
See also
% for see in example.see_also:
{{see}} % endfor
% endif % if example.author:
Author
{{example.author}}
% endif
% endfor # examples of a category % endfor # categories