Holen Sie sich alle Funktionen aus einem Modul als String -Liste Python

from inspect import getmembers, isfunction

from somemodule import foo
print(getmembers(foo, isfunction))

# source
# https://stackoverflow.com/questions/139180/how-to-list-all-functions-in-a-python-module
expliked