Import function from imported module

The best way to do that is:

import long_named_module as spam
func = spam.func

Leave a Comment