I want to see the arguments of a function in a specific library, example:
import lib
Let's say that lib contains a function func with two arguments: size and date.
I want to find a function help such that when I do something like help(lib.func), it gives me something like TWO ARGUMENTS: size and date.
Any suggestions?