7 lines
183 B
Python
7 lines
183 B
Python
|
|
mods = ['keystone', 'capstone', 'distorm3', 'iced_x86']
|
||
|
|
for name in mods:
|
||
|
|
try:
|
||
|
|
__import__(name)
|
||
|
|
print(name, 'yes')
|
||
|
|
except Exception:
|
||
|
|
print(name, 'no')
|