Files
lief-project-LIEF/api/python/examples/pe_resources_manager.py
T
Romain Thomas 9da2466609 Improve the LIEF Python build system by using pyproject.toml
- It also provides typing info (close #650)
- Enhance the test suite
- Remove deprecated PE functions
2023-02-19 20:19:03 +01:00

9 lines
143 B
Python

#!/usr/bin/env python
import sys
import lief
b = lief.parse(sys.argv[1])
manager = b.resources_manager
print(manager)
print(manager.manifest)