Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to get path of all the functions in a python module

result=[]
your_module = ?
for i in dir(your_module):
    if type(getattr(your_module, i)).__name__ == "function":
        result.append(getattr(your_module, i))
print(result)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #path #functions #python #module
ADD COMMENT
Topic
Name
2+5 =