Skip to content

Instantly share code, notes, and snippets.

@syohex
Created December 4, 2012 04:21
Show Gist options
  • Select an option

  • Save syohex/4200559 to your computer and use it in GitHub Desktop.

Select an option

Save syohex/4200559 to your computer and use it in GitHub Desktop.
show all installed python modules
#!/usr/bin/python
from pkgutil import iter_modules
a = iter_modules()
while True:
try:
x = a.next()
except:
break
print(x[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment