Ok I know you can use the dir() method to list everything in a module, but is there any way to see only the functions that are defined in that module? For example, assume m
Every class in python has a __module__ attribute. You can use its value to perform filtering. Take a look at example 6.14 in dive into python
__module__