mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
9da2466609
- It also provides typing info (close #650) - Enhance the test suite - Remove deprecated PE functions
9 lines
143 B
Python
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)
|