J'ai une chaîne, disons : abc.def.ghi.jkl.myfile.mymethod
. Comment importer dynamiquement mymethod
?
Voici comment je m'y suis pris :
def get_method_from_file(full_path):
if len(full_path) == 1:
return map(__import__,[full_path[0]])[0]
return getattr(get_method_from_file(full_path[:-1]),full_path[-1])
if __name__=='__main__':
print get_method_from_file('abc.def.ghi.jkl.myfile.mymethod'.split('.'))
Je me demande si l'importation de modules individuels est vraiment nécessaire.
Modification : j'utilise la version 2.6.5 de Python.