Created
October 20, 2022 03:01
-
-
Save msakai/89caaca4f7ac48b026b8ae78d0b4c9b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
for mname, m in sys.modules.items(): | |
fname = getattr(m, '__file__', None) | |
if fname is not None and fname.endswith('.so'): | |
print(f"{mname}: {fname}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment