Skip to content

Instantly share code, notes, and snippets.

@stavxyz
Created December 12, 2013 00:26
Show Gist options
  • Save stavxyz/7921161 to your computer and use it in GitHub Desktop.
Save stavxyz/7921161 to your computer and use it in GitHub Desktop.
import platform
import platform
for thing in dir(platform):
print '---------'
print thing
try:
print getattr(platform, thing)()
except Exception:
print getattr(platform, thing)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment