Created
December 12, 2013 00:26
-
-
Save stavxyz/7921161 to your computer and use it in GitHub Desktop.
import platform
This file contains 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 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