view contenttransformer/utils.py @ 19:afd11b758da0

just require genshi for now
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 27 Oct 2010 09:09:37 -0700
parents 6cbe4172b54b
children 466443d48906
line wrap: on
line source

#!/usr/bin/env python

def import_path(module):
  path = module.split('.')
  module = __import__(path[0])
  for name in path[1:]:
    module = getattr(module, name)
  return module

if __name__ == '__main__':
  import sys
  for i in sys.argv[1:]:
    print import_path(i)