profile 214 B

12345678910111213141516
  1. #!/usr/bin/env python
  2. import sys
  3. from ostatus.profile import profile
  4. def run():
  5. args = sys.argv
  6. for arg in args[1:]:
  7. data = profile(arg)
  8. print data
  9. if __name__ == '__main__':
  10. run()