#!/usr/bin/env python
import sys
exec "import %s as x" % sys.argv[1]
print "FILE"
print x.__file__
print "PATH"
for x in x.__path__ :
    print x
