Skip to content

Instantly share code, notes, and snippets.

@ryanwoodsmall
Created June 3, 2018 05:58
Show Gist options
  • Save ryanwoodsmall/5d1d0f8fa8204dfdf2f36883c8a6908a to your computer and use it in GitHub Desktop.
Save ryanwoodsmall/5d1d0f8fa8204dfdf2f36883c8a6908a to your computer and use it in GitHub Desktop.
dump json of dir(os/platform/sys)
#!/usr/bin/env python
import json
import os
import platform
import sys
i = {}
for m in [os,platform,sys]:
i[m.__name__] = dir(m)
print json.dumps(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment