Hello,
I'm wondering if there is a tool similar to dir()
for modules that will tell me what parameters a given function takes.
For instance, I would like to do something like dir(os.rename)
and have it tell me what the parameters are documented as so that I can avoid checking the documentation online, and instead use only the python scripting interface to do this.
If I've misused any terms in the title please let me know so I can update it.
Thanks!