Metadata-Version: 2.4
Name: idahelper
Version: 1.0.3
Summary: standard library for IDA Pro plugins
Project-URL: Homepage, https://github.com/yoavst/idahelper
Project-URL: Issues, https://github.com/yoavst/idahelper/issues
Author-email: Yoav Sternberg <yoav.sternberg@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Provides-Extra: pac
Requires-Dist: ida-netnode>=3.0; extra == 'pac'
Description-Content-Type: text/markdown

# IDAHelper

IDAHelper is a Python package that provides a set of tools to assist with reverse engineering tasks in IDA Pro.

## Example usage

```python
from idahelper import cpp, memory, tif

pure_virtual_ea = memory.ea_from_name("___cxa_pure_virtual")
for cls, vtable_ea in cpp.get_all_cpp_classes():
    parent_cls = tif.get_parent_class(cls)
```