Once you’ve import
ed the module, you can just do:
help(modulename)
… To get the docs on all the functions at once, interactively. Or you can use:
dir(modulename)
… To simply list the names of all the functions and variables defined in the module.