Install: pip install funkify
Make a module/package/script callable.
import funkify
@funkify
def some_funk_name_doesnt_matter():
return 'howdy'
import a_module
a_module.some_funk_name_doesnt_matter_what_it_is() # returns 'howdy'
a_module() # ALSO returns 'howdy'